summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-05-08 19:13:04 +0200
committerArne Schwabe <arne@rfc2549.org>2012-05-08 19:13:04 +0200
commitccd71cda1d09c0b934a645d8f93fa7f5514147d5 (patch)
treeadf97d4b1da7aaa68eeaa72c0e06ece3b1a28aaf
parentc08b39906f2a54e1211fedb8bcc3f1469b42d6f0 (diff)
If we make a toast, also show it.
-rw-r--r--src/de/blinkt/openvpn/LaunchVPN.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java
index 28abaf3d..88c14da3 100644
--- a/src/de/blinkt/openvpn/LaunchVPN.java
+++ b/src/de/blinkt/openvpn/LaunchVPN.java
@@ -291,7 +291,7 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener {
try {
startActivityForResult(intent, START_VPN_PROFILE);
} catch (ActivityNotFoundException ane){
- Toast.makeText(this, "Your image does not support the VPNService API,sorry :(", Toast.LENGTH_LONG);
+ Toast.makeText(this, "Your image does not support the VPNService API,sorry :(", Toast.LENGTH_LONG).show();
}
} else {
onActivityResult(START_VPN_PROFILE, Activity.RESULT_OK, null);