diff --git a/src/invidious.cr b/src/invidious.cr index c7081d94..f1e8c691 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -1579,7 +1579,12 @@ get "/channel/:ucid" do |env| end document = XML.parse_html(json["content_html"].as_s) - author = document.xpath_node(%q(//div[@class="pl-video-owner"]/a)).not_nil!.content + anchor = document.xpath_node(%q(//div[@class="pl-video-owner"]/a)) + if !anchor + error_message = "This channel is not available" + next templated "error" + end + author = anchor.content videos = [] of ChannelVideo document.xpath_nodes(%q(//a[contains(@class,"pl-video-title-link")])).each do |node|