diff --git a/daedalus/Cargo.toml b/daedalus/Cargo.toml index 75262c2..6aff4dd 100644 --- a/daedalus/Cargo.toml +++ b/daedalus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daedalus" -version = "0.1.25" +version = "0.1.26" authors = ["Jai A "] edition = "2018" license = "MIT" diff --git a/daedalus_client/Cargo.toml b/daedalus_client/Cargo.toml index 8cd0fd2..87b3d41 100644 --- a/daedalus_client/Cargo.toml +++ b/daedalus_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daedalus_client" -version = "0.1.25" +version = "0.1.26" authors = ["Jai A "] edition = "2018" diff --git a/daedalus_client/src/minecraft.rs b/daedalus_client/src/minecraft.rs index 6badc9c..e284c27 100644 --- a/daedalus_client/src/minecraft.rs +++ b/daedalus_client/src/minecraft.rs @@ -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);