From c5e67a5c6f946ffa9893b6ae28ea56d7639bea86 Mon Sep 17 00:00:00 2001 From: didirus4 Date: Tue, 8 Jul 2025 23:43:50 +0300 Subject: [PATCH] fix: typo --- packages/app-lib/src/state/db.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app-lib/src/state/db.rs b/packages/app-lib/src/state/db.rs index e74b30b6..331d9cb4 100644 --- a/packages/app-lib/src/state/db.rs +++ b/packages/app-lib/src/state/db.rs @@ -90,8 +90,8 @@ async fn fix_modrinth_issued_migrations( tracing::info!("Running on OS: {}, ARCH: {}", os, arch); - if os == "windows" && arch == "x86" { - tracing::warn!("🛑 Skipping migration checksum fix on Windows x86 (runtime-detected)"); + if os == "windows" && arch == "x86_64" { + tracing::warn!("🛑 Skipping migration checksum fix on Windows x86_64 (runtime-detected)"); return Ok(()); }