1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

reload process on lock

This commit is contained in:
Kyle Spearrin
2019-02-25 16:19:19 -05:00
parent 1be90ce6bd
commit 9792a7ade5
4 changed files with 15 additions and 6 deletions

View File

@@ -112,7 +112,9 @@ export class AppComponent implements OnInit {
action: msg.action,
properties: { label: msg.label },
});
} else {
} else if (msg.command === 'reloadProcess') {
window.location.reload(true);
} else {
msg.webExtSender = sender;
this.broadcasterService.send(msg);
}