Remove useless intermediary variable in youtube_api.cr

This fixes an ameba warning
This commit is contained in:
Samantaz Fox 2022-01-20 18:05:16 +01:00
parent e85bc3e0f6
commit 46f7ca9ffa
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -416,10 +416,9 @@ module YoutubeAPI
# Send the POST request
if {{ !flag?(:disable_quic) }} && CONFIG.use_quic
# Using QUIC client
response = YT_POOL.client(client_config.proxy_region,
body = YT_POOL.client(client_config.proxy_region,
&.post(url, headers: headers, body: data.to_json)
)
body = response.body
).body
else
# Using HTTP client
body = YT_POOL.client(client_config.proxy_region) do |client|