From d494006aff8a347e49fef15c3e6752a2e942d76b Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Nov 2018 08:32:04 -0500 Subject: [PATCH] pass project name to updater --- jslib | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 64a6015a..6920cf77 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 64a6015a67a8110cd8a4ef897e1338c71c4b6b49 +Subproject commit 6920cf77b9373ed25f882ce68f17dde582e0a5be diff --git a/src/main.ts b/src/main.ts index cad95dd7..23cf6125 100644 --- a/src/main.ts +++ b/src/main.ts @@ -75,7 +75,7 @@ export class Main { this.menuMain.updateMenuItem.enabled = true; }, () => { this.menuMain.updateMenuItem.label = this.i18nService.t('restartToUpdate'); - }); + }, 'bitwarden'); this.menuMain = new MenuMain(this); this.powerMonitorMain = new PowerMonitorMain(this); this.trayMain = new TrayMain(this.windowMain, this.i18nService, this.storageService);