From 9eddbac6f97fe1458fe3c5dddfdf05acc6a0bb05 Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Thu, 6 Jul 2023 14:30:37 +0200 Subject: [PATCH] fix fetch to process --- fetch/fetcher.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fetch/fetcher.go b/fetch/fetcher.go index c71b444..d608b0a 100644 --- a/fetch/fetcher.go +++ b/fetch/fetcher.go @@ -204,6 +204,8 @@ func (f *Fetcher) MetadataFetcher() { f.logger.Error("failed to save video", err) continue } + + f.out <- video } f.logger.Info("fetched metadata", slog.Int("count", len(videos))) }