client: translate comments

This commit is contained in:
Johann150 2022-11-12 18:18:24 +01:00
parent 6de3771943
commit a1f3b212fe
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 5 additions and 5 deletions

View File

@ -33,14 +33,14 @@ export async function initializeSw() {
})
// When subscribe failed
.catch(async (err: Error) => {
// 通知が許可されていなかったとき
// when notifications were not authorized
if (err.name === 'NotAllowedError') {
return;
}
// 違うapplicationServerKey (または gcm_sender_id)のサブスクリプションが
// 既に存在していることが原因でエラーになった可能性があるので、
// そのサブスクリプションを解除しておく
// The error may have been caused by the fact that a subscription to a
// different applicationServerKey (or gcm_sender_id) already exists, so
// unsubscribe to it.
const subscription = await registration.pushManager.getSubscription();
if (subscription) subscription.unsubscribe();
});