From 716b0b036b0b939fbde6304bd8520c552b0fb643 Mon Sep 17 00:00:00 2001 From: Urban Guacamole Date: Wed, 30 Dec 2020 16:05:04 +0100 Subject: [PATCH] Update EZTV RSS URL --- crawl-rss/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crawl-rss/main.go b/crawl-rss/main.go index 22cf513..c2007d2 100644 --- a/crawl-rss/main.go +++ b/crawl-rss/main.go @@ -46,7 +46,7 @@ func main() { } i++ refresh(db) - time.Sleep(time.Minute * 60) + time.Sleep(time.Minute * 100) } } @@ -92,7 +92,7 @@ func CrawlYts() []Torrent { func CrawlEztv() []Torrent { //maybe is there some kind of interface that this can share with CrawlYts? This function has the same signature and purpose. fp := gofeed.NewParser() - feed, err := fp.ParseURL("https://eztv.io/ezrss.xml") + feed, err := fp.ParseURL("https://eztv.re/ezrss.xml") if err != nil { log.Fatal(err) }