Fix library URL being set incorrectly

This commit is contained in:
Jai A 2021-11-10 18:40:12 -07:00
parent f6c611bbba
commit d7e0468776
No known key found for this signature in database
GPG Key ID: 2AA7E66D6ACA2201
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "daedalus"
version = "0.1.6"
version = "0.1.7"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2018"
license = "MIT"

View File

@ -370,7 +370,7 @@ pub async fn retrieve_data(uploaded_files: &mut Vec<String>) -> Result<(), Error
};
if res.is_some() {
lib.url = Some(format_url(&*format!("maven/{}", artifact_path)));
lib.url = Some(format_url("maven/"));
}
res