diff --git a/src/background/runtime.background.ts b/src/background/runtime.background.ts index 03825d43f2..64fb43f7d6 100644 --- a/src/background/runtime.background.ts +++ b/src/background/runtime.background.ts @@ -79,7 +79,7 @@ export default class RuntimeBackground { await this.processMessage(retryItem.msg, retryItem.sender, null); } break; - case 'addToRetryQueue': + case 'addToLockedVaultPendingNotifications': const retryMessage = { msg: msg.retryItem, sender: sender, diff --git a/src/notification/bar.js b/src/notification/bar.js index 6d0eada312..7949e6a2f8 100644 --- a/src/notification/bar.js +++ b/src/notification/bar.js @@ -76,7 +76,7 @@ document.addEventListener('DOMContentLoaded', () => { }); sendPlatformMessage({ - command: 'addToRetryQueue', + command: 'addToLockedVaultPendingNotifications', retryItem: bgAddSaveMessage }); return; @@ -120,7 +120,7 @@ document.addEventListener('DOMContentLoaded', () => { }); sendPlatformMessage({ - command: 'addToRetryQueue', + command: 'addToLockedVaultPendingNotifications', retryItem: bgChangeSaveMessage, }); return;