fix: Follow download redirects (#981)
Some checks failed
Build / Test (push) Has been cancelled
Build / Build (push) Has been cancelled

This commit is contained in:
Kroese 2024-12-20 18:32:26 +01:00 committed by GitHub
parent 6825b6a45a
commit 57193b0f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -635,6 +635,21 @@ getMG() {
return 1 return 1
fi fi
local domain="buzzheavier.com"
if [[ "$result" = *"$domain"* ]]; then
result=$(curl --silent --max-time 30 --request GET --user-agent "$user_agent" --referer "$result" --head --proto =https --tlsv1.2 --http1.1 -- "$result/download") || {
handle_curl_error "$?" "$domain"
return $?
}
result=$(echo "$result" | grep -i -m 1 "hx-redirect:")
if [ -z "$result" ]; then
error "Failed to extract redirect location! Please report this at $SUPPORT/issues."
return 1
fi
result="https://${domain}${result:13}"
fi
MG_URL="$result" MG_URL="$result"
return 0 return 0
} }