fix: use urlencoding crate for wally packages
Some checks failed
Debug / Get build version (push) Has been cancelled
Test & Lint / lint (push) Has been cancelled
Debug / Build for linux-x86_64 (push) Has been cancelled
Debug / Build for macos-aarch64 (push) Has been cancelled
Debug / Build for macos-x86_64 (push) Has been cancelled
Debug / Build for windows-x86_64 (push) Has been cancelled

This commit is contained in:
daimond113 2025-01-10 16:06:59 +01:00
parent 076f5564ee
commit 72c1c39401
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C

View file

@ -247,9 +247,11 @@ impl PackageSource for WallyPackageSource {
let mut request = reqwest
.get(format!(
"{}/v1/package-contents/{scope}/{name}/{}",
"{}/v1/package-contents/{}/{}/{}",
config.api.as_str().trim_end_matches('/'),
id.version_id().version()
urlencoding::encode(scope),
urlencoding::encode(name),
urlencoding::encode(&id.version_id().version().to_string())
))
.header(
"Wally-Version",