Fix 500 on channel page when video list is empty

このコミットが含まれているのは:
Omar Roth 2018-07-29 11:31:00 -05:00
コミット 503c47c8bf
1個のファイルの変更10行の追加0行の削除

ファイルの表示

@ -2222,6 +2222,16 @@ get "/channel/:ucid" do |env|
response = client.get(url)
json = JSON.parse(response.body)
if json["content_html"].as_s.strip(" \n").empty?
rss = client.get("/feeds/videos.xml?channel_id=#{ucid}").body
rss = XML.parse_html(rss)
author = rss.xpath_node("//feed/author/name").not_nil!.content
videos = [] of ChannelVideo
next templated "channel"
end
document = XML.parse_html(json["content_html"].as_s)
author = document.xpath_node(%q(//div[@class="pl-video-owner"]/a)).not_nil!.content