don't prevent channels with 0 youtube videos from transferring

This commit is contained in:
Niko Storni 2020-03-31 02:45:53 +02:00
parent c9e713e9df
commit b59372c1d8

View file

@ -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 {