From 1590393fcc461e8279bbca75162d5f6af0fc5b0b Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Mon, 11 Feb 2019 10:52:28 -0600 Subject: [PATCH] Don't try to update channels in subscription manager --- src/invidious.cr | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/invidious.cr b/src/invidious.cr index c0b9e075..83e77016 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1375,10 +1375,8 @@ get "/subscription_manager" do |env| subscriptions = [] of InvidiousChannel user.subscriptions.each do |ucid| - begin - subscriptions << get_channel(ucid, PG_DB, false, false) - rescue ex - next + if channel = PG_DB.query_one?("SELECT * FROM channels WHERE id = $1", ucid, as: InvidiousChannel) + subscriptions << channel end end subscriptions.sort_by! { |channel| channel.author.downcase }