1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-06-15 16:00:36 +00:00

Fix broken auto-updates (#725)

This commit is contained in:
asimon-1 2025-02-25 17:20:13 -08:00 committed by GitHub
parent 661939e4fe
commit 0a787b8a0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,7 +125,7 @@ pub fn main() {
if !is_emulator() {
info!("Performing version check...");
let _updater = std::thread::Builder::new()
.stack_size(0x20000)
.stack_size(0x80000)
.spawn(move || {
release::perform_version_check();
})