diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-03-05 13:49:04 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-03-06 15:28:40 +0100 |
| commit | 50f5bdddfd1935e156123306e7b0069a9fa93ee6 (patch) | |
| tree | 1c115f2300c27091dff346f06fbfc5d85714ed37 | |
| parent | 20ef3503f5fa987880be20fe79d980b6d24aac66 (diff) | |
| download | mullvadvpn-50f5bdddfd1935e156123306e7b0069a9fa93ee6.tar.xz mullvadvpn-50f5bdddfd1935e156123306e7b0069a9fa93ee6.zip | |
Change content of os notification when entering non-blocking error state
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | gui/src/main/notification-controller.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d08c6c0574..a1d0d27fe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ Line wrap the file at 100 chars. Th ### Fixed - Fix bug that could lead to Javascript error dialog to appear upon the desktop app termination. +- Show when the app failed to block all connections after an error in the android and desktop apps. #### macOS - Fix firewall rules to properly handle DNS requests over TCP when "Local network sharing" is @@ -49,7 +50,6 @@ Line wrap the file at 100 chars. Th #### Android - Make sure the settings screen is scrollable so that devices with small screens can access the quit button. -- Show when the app failed to block all connections after an error. #### Windows - Fix bug where failing to initialize the route manager could cause the daemon to get stuck in a diff --git a/gui/src/main/notification-controller.ts b/gui/src/main/notification-controller.ts index 4c542db3ea..c0371114e5 100644 --- a/gui/src/main/notification-controller.ts +++ b/gui/src/main/notification-controller.ts @@ -84,7 +84,7 @@ export default class NotificationController { ); } else { this.showTunnelStateNotification( - messages.pgettext('notifications', 'Critical failure - Unsecured'), + messages.pgettext('notifications', 'Critical error (your attention is required)'), ); } break; |
