diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-11-19 00:22:56 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-11-19 00:22:56 +0100 |
commit | 42f552b5eeb209ba32282c87f61414bcaf85cf23 (patch) | |
tree | 1b16b59c3177e4b287e0a4bdc2e93847b0d02323 /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 8ced9f378613425efb9949196e967dbe2f03a63a (diff) |
small bug fixes
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 7b5faae3..79c94779 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -647,7 +647,7 @@ public class VpnProfile implements Serializable { } catch (AssertionError e) { if (tries ==0) return null; - Toast.makeText(context, String.format("Failure getting Keystore Keys (%s), retrying",e.getLocalizedMessage()),Toast.LENGTH_LONG).show(); + VpnStatus.logError(String.format("Failure getting Keystore Keys (%s), retrying",e.getLocalizedMessage())); try { Thread.sleep(3000); } catch (InterruptedException e1) { |