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
1 changed files with 2 additions and 3 deletions

View File

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