Remove previous scuffed attempt at filtering shorts

This commit is contained in:
Svilen Markov 2024-08-03 04:03:16 +01:00
parent acaf50bf8a
commit 3949e15f77

View File

@ -78,12 +78,6 @@ func FetchYoutubeChannelUploads(channelIds []string, videoUrlTemplate string, no
for j := range response.Videos {
video := &response.Videos[j]
// TODO: figure out a better way of skipping shorts
if strings.Contains(video.Title, "#shorts") {
continue
}
var videoUrl string
if videoUrlTemplate == "" {