aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/src/core/manifest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src-tauri/src/core/manifest.rs')
-rw-r--r--src-tauri/src/core/manifest.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-tauri/src/core/manifest.rs b/src-tauri/src/core/manifest.rs
index 2fea811..bae87c9 100644
--- a/src-tauri/src/core/manifest.rs
+++ b/src-tauri/src/core/manifest.rs
@@ -74,7 +74,7 @@ pub async fn fetch_vanilla_version(
) -> Result<GameVersion, Box<dyn Error + Send + Sync>> {
// First, get the manifest to find the version URL
let manifest = fetch_version_manifest().await?;
-
+
let version_entry = manifest
.versions
.iter()
@@ -86,7 +86,7 @@ pub async fn fetch_vanilla_version(
.await?
.json::<GameVersion>()
.await?;
-
+
Ok(resp)
}
@@ -121,7 +121,7 @@ pub async fn load_version(
Ok(v) => v,
Err(_) => fetch_vanilla_version(&parent_id).await?,
};
-
+
// Merge child into parent
version = crate::core::version_merge::merge_versions(version, parent);
}