summaryrefslogtreecommitdiffhomepage
path: root/gui/src/main/notification-controller.ts
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2020-01-24 13:45:58 +0100
committerAndrej Mihajlov <and@mullvad.net>2020-01-27 18:49:36 +0100
commit64abc0312b016e62d64f5be2a5b1f9eaaecd51de (patch)
tree5f1604f60c2ced4e4f02f5b698a85d14903f694c /gui/src/main/notification-controller.ts
parent989b58e5fcef66a0fa018ea3939653c9ed5a7367 (diff)
downloadmullvadvpn-64abc0312b016e62d64f5be2a5b1f9eaaecd51de.tar.xz
mullvadvpn-64abc0312b016e62d64f5be2a5b1f9eaaecd51de.zip
Fix deprecated Electron APIs
Diffstat (limited to 'gui/src/main/notification-controller.ts')
-rw-r--r--gui/src/main/notification-controller.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/main/notification-controller.ts b/gui/src/main/notification-controller.ts
index 99af3bcf45..98852029f3 100644
--- a/gui/src/main/notification-controller.ts
+++ b/gui/src/main/notification-controller.ts
@@ -11,7 +11,7 @@ export default class NotificationController {
private reconnecting = false;
private presentedNotifications: { [key: string]: boolean } = {};
private pendingNotifications: Notification[] = [];
- private notificationTitle = process.platform === 'linux' ? app.getName() : '';
+ private notificationTitle = process.platform === 'linux' ? app.name : '';
private notificationIcon?: NativeImage;
constructor() {