fix migration of settings

This commit is contained in:
MathMan05
2026-07-13 14:13:50 -05:00
parent 6a5ae58606
commit 0333c7b2af
+1 -1
View File
@@ -34,7 +34,7 @@ async function migrateOldDeveloperSettings(): Promise<void> {
const oldGatewayCompression = localStorage.getItem("gateWayComp");
if (oldGatewayCompression !== null) {
devSettings.gatewayCompression = oldGatewayCompression === "true";
devSettings.gatewayCompression = oldGatewayCompression !== "false";
localStorage.removeItem("gateWayComp");
mod = true;
}