forked from FoundKeyGang/FoundKey
client: translate comments
This commit is contained in:
parent
6de3771943
commit
a1f3b212fe
1 changed files with 5 additions and 5 deletions
|
@ -33,14 +33,14 @@ export async function initializeSw() {
|
||||||
})
|
})
|
||||||
// When subscribe failed
|
// When subscribe failed
|
||||||
.catch(async (err: Error) => {
|
.catch(async (err: Error) => {
|
||||||
// 通知が許可されていなかったとき
|
// when notifications were not authorized
|
||||||
if (err.name === 'NotAllowedError') {
|
if (err.name === 'NotAllowedError') {
|
||||||
return;
|
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();
|
const subscription = await registration.pushManager.getSubscription();
|
||||||
if (subscription) subscription.unsubscribe();
|
if (subscription) subscription.unsubscribe();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue