From 9590c508e068dddc487e609bbf0a8a1f99d9f3bb Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Fri, 5 Apr 2024 21:49:51 +0900 Subject: [PATCH] =?UTF-8?q?fix(AiMode):=20=E6=97=A7Hub=E6=99=82=E3=81=AE?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=81=8C=E6=AE=8B=E3=81=A3=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=82=8B=E5=A0=B4=E5=90=88=E3=81=AB=E8=A8=AD=E5=AE=9A=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E3=81=8C=E5=8F=8D=E6=98=A0=E3=81=A7=E3=81=8D=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/content/AiModeB.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/content/AiModeB.vue b/components/content/AiModeB.vue index eb7a59a7..f4ff9db3 100644 --- a/components/content/AiModeB.vue +++ b/components/content/AiModeB.vue @@ -11,7 +11,7 @@ if (import.meta.client) { isEnabledAiChanMode.value = ((localStorage.getItem('miHub_aichan_mode') ?? '') == 'true'); // migration - if (!isEnabledAiChanMode.value) { + if (!localStorage.getItem('miHub_aichan_mode')) { isEnabledAiChanMode.value = ((localStorage.getItem('aimode') ?? '') == 'true'); } }