Shorten variable name
This commit is contained in:
parent
79f849fd92
commit
f951c860ea
|
@ -347,10 +347,10 @@ export default class MainBackground {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const lockedVaultPendingNotificationsItem = this.lockedVaultPendingNotifications.pop();
|
const item = this.lockedVaultPendingNotifications.pop();
|
||||||
switch (lockedVaultPendingNotificationsItem.from) {
|
switch (item.from) {
|
||||||
case 'notificationBar':
|
case 'notificationBar':
|
||||||
await this.notificationBackground.processMessage(lockedVaultPendingNotificationsItem.commandToRetry, lockedVaultPendingNotificationsItem.commandToRetry.sender, null);
|
await this.notificationBackground.processMessage(item.commandToRetry, item.commandToRetry.sender, null);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue