Renamed command addToRetryQueue to addToLockedVaultPendingNotifications

This commit is contained in:
Daniel James Smith 2021-10-08 15:22:21 +02:00
parent 042c7677e8
commit 79f097b3cd
No known key found for this signature in database
GPG Key ID: 03E4BD365FF06726
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ export default class RuntimeBackground {
await this.processMessage(retryItem.msg, retryItem.sender, null); await this.processMessage(retryItem.msg, retryItem.sender, null);
} }
break; break;
case 'addToRetryQueue': case 'addToLockedVaultPendingNotifications':
const retryMessage = { const retryMessage = {
msg: msg.retryItem, msg: msg.retryItem,
sender: sender, sender: sender,

View File

@ -76,7 +76,7 @@ document.addEventListener('DOMContentLoaded', () => {
}); });
sendPlatformMessage({ sendPlatformMessage({
command: 'addToRetryQueue', command: 'addToLockedVaultPendingNotifications',
retryItem: bgAddSaveMessage retryItem: bgAddSaveMessage
}); });
return; return;
@ -120,7 +120,7 @@ document.addEventListener('DOMContentLoaded', () => {
}); });
sendPlatformMessage({ sendPlatformMessage({
command: 'addToRetryQueue', command: 'addToLockedVaultPendingNotifications',
retryItem: bgChangeSaveMessage, retryItem: bgChangeSaveMessage,
}); });
return; return;