API: handle related channels parsing exceptions

This commit is contained in:
Samantaz Fox 2022-02-07 00:52:18 +01:00
parent 1668e4187e
commit 698a6f3886
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 5 additions and 1 deletions

View File

@ -97,7 +97,11 @@ module Invidious::Routes::API::V1::Channels
json.field "relatedChannels" do
json.array do
# Fetch related channels
related_channels = fetch_related_channels(channel)
begin
related_channels = fetch_related_channels(channel)
rescue ex
related_channels = [] of AboutRelatedChannel
end
related_channels.each do |related_channel|
json.object do