From f7a5ce265293b0a72600e58c7da1f6775f54066c Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Thu, 26 Jul 2018 16:23:55 -0500 Subject: [PATCH] Don't try to update all channel videos --- src/invidious.cr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/invidious.cr b/src/invidious.cr index 141ab482..8f7bf2ee 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -137,10 +137,9 @@ channel_threads.times do |i| begin id = rs.read(String) - channel = get_channel(id, client, PG_DB) + channel = fetch_channel(id, client, PG_DB, false) rescue ex STDOUT << id << " : " << ex.message << "\n" - client = make_client(YT_URL) next end end