fixup! Videos: Fix audio tracks language.
All checks were successful
Invidious CI / build (push) Successful in 5m57s
All checks were successful
Invidious CI / build (push) Successful in 5m57s
This commit is contained in:
parent
7b662b008c
commit
09a1935629
2 changed files with 2 additions and 4 deletions
|
@ -56,7 +56,7 @@ module Invidious::Routes::API::Manifest
|
||||||
end
|
end
|
||||||
|
|
||||||
audio_streams.reject! do |z|
|
audio_streams.reject! do |z|
|
||||||
z if z["audioTrack"]["audioIsDefault"].as_bool == false
|
z if z.dig?("audioTrack", "audioIsDefault") == false
|
||||||
end
|
end
|
||||||
|
|
||||||
manifest = XML.build(indent: " ", encoding: "UTF-8") do |xml|
|
manifest = XML.build(indent: " ", encoding: "UTF-8") do |xml|
|
||||||
|
|
|
@ -153,11 +153,9 @@ module Invidious::Routes::Watch
|
||||||
end
|
end
|
||||||
|
|
||||||
audio_streams.reject! do |z|
|
audio_streams.reject! do |z|
|
||||||
z if z["audioTrack"]["audioIsDefault"].as_bool == false
|
z if z.dig?("audioTrack", "audioIsDefault") == false
|
||||||
end
|
end
|
||||||
|
|
||||||
pp audio_streams
|
|
||||||
|
|
||||||
# Older videos may not have audio sources available.
|
# Older videos may not have audio sources available.
|
||||||
# We redirect here so they're not unplayable
|
# We redirect here so they're not unplayable
|
||||||
if audio_streams.empty? && !video.live_now
|
if audio_streams.empty? && !video.live_now
|
||||||
|
|
Loading…
Reference in a new issue