diff options
author | Arne Schwabe <arne@rfc2549.org> | 2017-05-21 01:04:11 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2017-05-21 01:04:11 +0200 |
commit | 3e6a9e7ada2fdd632898c607211ab1fdc4a85407 (patch) | |
tree | b0079dafb1b710eb06350c8bdaaea10168f23173 /main | |
parent | 56e1e863d7cfc38043928e194e6da800210fc75e (diff) |
Fix ticker text (closes #667)
Diffstat (limited to 'main')
-rw-r--r-- | main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java b/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java index e7b85853..2e68b202 100644 --- a/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java +++ b/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java @@ -1029,9 +1029,8 @@ public class OpenVPNService extends VpnService implements StateListener, Callbac // This also mean we are no longer connected, ignore bytecount messages until next // CONNECTED // Does not work :( - String msg = getString(resid); showNotification(VpnStatus.getLastCleanLogMessage(this), - msg, priority, 0, level); + VpnStatus.getLastCleanLogMessage(this), priority, 0, level); } } |