From c171c62dd71b30175bff696a07fb88e6a959bf76 Mon Sep 17 00:00:00 2001 From: zumbiepig <121742281+zumbiepig@users.noreply.github.com> Date: Sat, 21 Sep 2024 09:23:31 -0700 Subject: [PATCH] hotfix Signed-off-by: zumbiepig <121742281+zumbiepig@users.noreply.github.com> --- src/resources/scripts/main.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/resources/scripts/main.ts b/src/resources/scripts/main.ts index 01d2477..5653ca3 100644 --- a/src/resources/scripts/main.ts +++ b/src/resources/scripts/main.ts @@ -430,14 +430,14 @@ const storage = { const json: Record = {}; json[key] = value; localStorage.setItem( - 'minexlauncher', + 'minexlauncher-v2', base64Gzip.compress(JSON.stringify(json)), ); } else { const json = JSON.parse(base64Gzip.decompress(item)); json[key] = value; localStorage.setItem( - 'minexlauncher', + 'minexlauncher-v2', base64Gzip.compress(JSON.stringify(json)), ); } @@ -464,14 +464,14 @@ const storage = { const json: Record = {}; json[key] = value; sessionStorage.setItem( - 'minexlauncher', + 'minexlauncher-v2', base64Gzip.compress(JSON.stringify(json)), ); } else { const json = JSON.parse(base64Gzip.decompress(item)); json[key] = value; sessionStorage.setItem( - 'minexlauncher', + 'minexlauncher-v2', base64Gzip.compress(JSON.stringify(json)), ); }