Skip to content

Commit

Permalink
thanks vscode for letting me know after making commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aNaOH committed Jun 12, 2024
1 parent 5772a07 commit 972a29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ impl ModIOClient {
}

async fn upload_mod_via_api(&self, modfile_path: &str, name: &str, summary: &str, api_key: &str, thumbnail_path: &str) -> Result<ModIOMod, Box<dyn std::error::Error>> {
let zip_path = modfile_path + ".zip";
let zip_path = modfile_path.to_owned() + ".zip";
Self::compress_to_zip(modfile_path, &zip_path).await?;

let modfile = read(&zip_path).await?;
Expand Down

0 comments on commit 972a29f

Please sign in to comment.