mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
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
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:
parent
076f5564ee
commit
72c1c39401
1 changed files with 4 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue