mirror of https://github.com/iv-org/invidious.git
API: handle related channels parsing exceptions
This commit is contained in:
parent
1668e4187e
commit
698a6f3886
|
@ -97,7 +97,11 @@ module Invidious::Routes::API::V1::Channels
|
||||||
json.field "relatedChannels" do
|
json.field "relatedChannels" do
|
||||||
json.array do
|
json.array do
|
||||||
# Fetch related channels
|
# 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|
|
related_channels.each do |related_channel|
|
||||||
json.object do
|
json.object do
|
||||||
|
|
Loading…
Reference in New Issue