From b59372c1d87c0ca9280c4c8f21b4cfaec7dd3058 Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Tue, 31 Mar 2020 02:45:53 +0200 Subject: [PATCH] don't prevent channels with 0 youtube videos from transferring --- manager/ytsync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/ytsync.go b/manager/ytsync.go index fa72ddf..071f1a9 100644 --- a/manager/ytsync.go +++ b/manager/ytsync.go @@ -1029,7 +1029,7 @@ func (s *Sync) enqueueYoutubeVideos() error { if youtubeIsLying { break } - return errors.Err("playlist items not found") + break //return errors.Err("playlist items not found") //TODO: will this work? } videoIDs := make([]string, 50) for i, item := range playlistResponse.Items {