diff options
| author | 2026-01-14 22:09:49 +0100 | |
|---|---|---|
| committer | 2026-01-14 22:09:49 +0100 | |
| commit | a6037e4f80e78ee1403af9631825e5faeb1a9b4d (patch) | |
| tree | a3652ed31afffc47115a0fff8ee1292e861c5b42 /src-tauri/src/main.rs | |
| parent | 3000190d4f9d43bd33b074cc1c242ff0b87d8235 (diff) | |
| download | DropOut-a6037e4f80e78ee1403af9631825e5faeb1a9b4d.tar.gz DropOut-a6037e4f80e78ee1403af9631825e5faeb1a9b4d.zip | |
fix: add missing sha256 field to DownloadTask for Maven libraries
Diffstat (limited to 'src-tauri/src/main.rs')
| -rw-r--r-- | src-tauri/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 88d614c..e5fe17e 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -236,6 +236,7 @@ async fn start_game( url, path: lib_path, sha1: None, // Maven libraries often don't have SHA1 in the JSON + sha256: None, }); } } |