diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-24 21:16:05 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-24 21:16:05 +0900 |
| commit | bf4726f91d8ce6977b6e05219816238811931e99 (patch) | |
| tree | 99875eeb9eec174a09543916a1732b05dd14da2c /packages/client/src | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | misskey-bf4726f91d8ce6977b6e05219816238811931e99.tar.gz misskey-bf4726f91d8ce6977b6e05219816238811931e99.tar.bz2 misskey-bf4726f91d8ce6977b6e05219816238811931e99.zip | |
fix(client): ログアウトできない問題を修正
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/account.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts index 2b07dd1990..eb2ba0a1e1 100644 --- a/packages/client/src/account.ts +++ b/packages/client/src/account.ts @@ -24,6 +24,8 @@ export async function signout() { await removeAccount($i.id); + const accounts = await getAccounts(); + //#region Remove service worker registration try { if (navigator.serviceWorker.controller) { |