diff options
| author | 2026-01-15 04:04:37 +0100 | |
|---|---|---|
| committer | 2026-01-15 04:04:37 +0100 | |
| commit | 233c1ebf67a0a17ca1b64d41f69832c9ccf36211 (patch) | |
| tree | 56b2358a1821e62922348a53c31bf81619876d3b /src-tauri/src/main.rs | |
| parent | e9d2c467e011499678b928df4562b4c4ac2f8f1d (diff) | |
| download | DropOut-233c1ebf67a0a17ca1b64d41f69832c9ccf36211.tar.gz DropOut-233c1ebf67a0a17ca1b64d41f69832c9ccf36211.zip | |
fix: update JVM argument handling to set sha256 to None
Diffstat (limited to 'src-tauri/src/main.rs')
| -rw-r--r-- | src-tauri/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 8e60198..2632924 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -2,6 +2,7 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] use std::process::Stdio; +use std::ptr::null; use std::sync::Mutex; use tauri::{Emitter, Manager, State, Window}; // Added Emitter use tokio::io::{AsyncBufReadExt, BufReader}; @@ -158,7 +159,7 @@ async fn start_game( url: client_jar.url.clone(), path: client_path.clone(), sha1: client_jar.sha1.clone(), - sha256: client_jar.sha256.clone(), + sha256: None, }); // --- Libraries --- |