Apply suggestions from code review

Co-authored-by: Matthew McGarvey <matthewmcgarvey14@gmail.com>
このコミットが含まれているのは:
Samantaz Fox 2022-02-03 03:55:43 +01:00 committed by GitHub
コミット eca8d2e7d7
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -455,7 +455,7 @@ struct Video
qualities.each do |quality|
json.object do
json.field "url", rv["author_thumbnail"].try &.gsub(/s\d+-/, "s#{quality}-")
json.field "url", rv["author_thumbnail"].gsub(/s\d+-/, "s#{quality}-")
json.field "width", quality
json.field "height", quality
end
@ -944,7 +944,7 @@ def extract_video_info(video_id : String, proxy_region : String? = nil, context_
"endScreen", "watchNextEndScreenRenderer", "results"
)
secondary_results.try &.as_a.each do |element|
player_overlays.try &.as_a.each do |element|
if item = element["endScreenVideoRenderer"]?
related_video = parse_related_video(item)
related << JSON::Any.new(related_video) if related_video