From b408ef5ba58cc5aec46c711a7093808bdf2ba053 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 20 Dec 2020 10:52:41 +0900 Subject: [PATCH] Update migration --- src/client/init.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/client/init.ts b/src/client/init.ts index fa20622a1..609c1086a 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -8,6 +8,10 @@ import '@/style.scss'; if (localStorage.getItem('vuex') != null) { const vuex = JSON.parse(localStorage.getItem('vuex')); + localStorage.setItem('account', JSON.stringify({ + ...vuex.i, + token: localStorage.getItem('i') + })); localStorage.setItem('accounts', JSON.stringify(vuex.device.accounts)); localStorage.setItem('miux:themes', JSON.stringify(vuex.device.themes)); @@ -25,6 +29,9 @@ if (localStorage.getItem('vuex') != null) { } localStorage.removeItem('vuex'); + localStorage.removeItem('i'); + + location.reload(); } import { createApp, watch } from 'vue';