Skip to content

Commit

Permalink
Fix minecraft meta links (#12)
Browse files Browse the repository at this point in the history
* Fix minecraft meta links

* remove debug

* bump v

* no mut
  • Loading branch information
Geometrically committed Sep 12, 2023
1 parent c1d2838 commit 57b1932
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daedalus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "daedalus"
version = "0.1.25"
version = "0.1.26"
authors = ["Jai A <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion daedalus_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "daedalus_client"
version = "0.1.25"
version = "0.1.26"
authors = ["Jai A <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion daedalus_client/src/minecraft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub async fn retrieve_data(

let mut manifest =
daedalus::minecraft::fetch_version_manifest(None).await?;
let cloned_manifest = Arc::new(Mutex::new(manifest.clone()));
let cloned_manifest = Arc::new(Mutex::new(old_manifest.clone().unwrap_or(manifest.clone())));

let patches = fetch_library_patches()?;
let cloned_patches = Arc::new(&patches);
Expand Down

0 comments on commit 57b1932

Please sign in to comment.