Skip to content

Commit

Permalink
launch manifest error improved
Browse files Browse the repository at this point in the history
  • Loading branch information
1zun4 committed Dec 12, 2023
1 parent 5e8f40a commit 0f25f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/app/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ async fn run_client(build_id: u32, account_data: MinecraftAccount, options: Laun
info!("Loading launch manifest...");
let launch_manifest = ApiEndpoints::launch_manifest(build_id)
.await
.map_err(|e| format!("unable to request launch manifest: {:?}", e))?;
.map_err(|e| format!("failed to fetch launch manifest of build {}: {:?}", build_id, e))?;

let (terminator_tx, terminator_rx) = tokio::sync::oneshot::channel();

Expand Down

0 comments on commit 0f25f9c

Please sign in to comment.