From 64be04267c2f000c3ed8e0b5dbe37deebe691ab7 Mon Sep 17 00:00:00 2001 From: tamaina Date: Tue, 23 Mar 2021 21:50:51 +0900 Subject: [PATCH] https://github.com/syuilo/misskey/pull/7129#discussion_r599502821 --- src/client/sw/notification-read.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/sw/notification-read.ts b/src/client/sw/notification-read.ts index 093322a8b7..b0b73aace8 100644 --- a/src/client/sw/notification-read.ts +++ b/src/client/sw/notification-read.ts @@ -11,7 +11,7 @@ type Accounts = { } }; -class SwNotificationRead { +class SwNotificationReadManager { private accounts: Accounts = {}; public async construct() { @@ -47,4 +47,4 @@ class SwNotificationRead { } } -export const swNotificationRead = (new SwNotificationRead()).construct(); +export const swNotificationRead = (new SwNotificationReadManager()).construct();