Make sure to only apply fix if QUIC is disabled

This commit is contained in:
Samantaz Fox 2021-11-16 21:40:35 +01:00
parent dad8f9a0ce
commit 2c447a42f2
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -425,8 +425,11 @@ module YoutubeAPI
)
end
# Decompress the body ourselves, given that auto-decompress is
# broken in the Crystal stdlib.
if {{ !flag?(:disable_quic) }} && CONFIG.use_quic
body = response.body
else
# Decompress the body ourselves, when using HTTP::Client given that
# auto-decompress is broken in the Crystal stdlib.
# Read more:
# - https://github.com/iv-org/invidious/issues/2612
# - https://github.com/crystal-lang/crystal/issues/11354
@ -439,6 +442,7 @@ module YoutubeAPI
else
body = response.body
end
end
# Convert result to Hash
initial_data = JSON.parse(body).as_h