From c88d7a10878ab022a1d4b840a9ee5ecdbe79dcf1 Mon Sep 17 00:00:00 2001 From: tamaina Date: Wed, 24 Feb 2021 19:29:35 +0900 Subject: [PATCH] =?UTF-8?q?SW=E3=81=AF=E3=83=97=E3=83=AD=E3=82=AD=E3=82=B7?= =?UTF-8?q?=E4=B8=8D=E8=A6=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/sw/lang.ts | 2 +- src/client/sw/notification-read.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/sw/lang.ts b/src/client/sw/lang.ts index 99f0e518c3..1b3f1ad620 100644 --- a/src/client/sw/lang.ts +++ b/src/client/sw/lang.ts @@ -3,7 +3,7 @@ */ declare var self: ServiceWorkerGlobalScope; -import { get, set } from '@/scripts/idb-proxy'; +import { get, set } from 'idb-keyval'; import { I18n } from '../../misc/i18n'; class SwLang { diff --git a/src/client/sw/notification-read.ts b/src/client/sw/notification-read.ts index 03cb0611ca..093322a8b7 100644 --- a/src/client/sw/notification-read.ts +++ b/src/client/sw/notification-read.ts @@ -1,6 +1,6 @@ declare var self: ServiceWorkerGlobalScope; -import { get } from '@/scripts/idb-proxy'; +import { get } from 'idb-keyval'; import { pushNotificationData } from '../../types'; import { api } from './operations';