Update src/invidious/routes/video_playback.cr

Co-authored-by: Samantaz Fox <coding@samantaz.fr>
This commit is contained in:
Brahim Hadriche 2023-03-12 18:36:03 -04:00 committed by GitHub
parent d57d278f32
commit 3848c3f53f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ module Invidious::Routes::VideoPlayback
end
if itag.nil?
fmt = video.fmt_stream[-1]
fmt = video.fmt_stream[-1]?
else
fmt = video.fmt_stream.find(nil) { |f| f["itag"].as_i == itag } || video.adaptive_fmts.find(nil) { |f| f["itag"].as_i == itag }
end