diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-08-07 00:05:02 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-08-07 00:05:02 +0200 |
commit | be8b263f543530eb2142f362d0d7346f013c57c3 (patch) | |
tree | 339b27c8cbfc6a1e0a79039afafa374805ae083c /src/de/blinkt/openvpn/LogWindow.java | |
parent | 5e857c81eb31b4f1f445cffc28b575359993e38d (diff) |
Always pass context when retrieving vpn config, don't try JB+ extra on ICS (closes issue #188)
Diffstat (limited to 'src/de/blinkt/openvpn/LogWindow.java')
-rw-r--r-- | src/de/blinkt/openvpn/LogWindow.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/LogWindow.java b/src/de/blinkt/openvpn/LogWindow.java index 9a7e13fa..10f3c0ab 100644 --- a/src/de/blinkt/openvpn/LogWindow.java +++ b/src/de/blinkt/openvpn/LogWindow.java @@ -337,7 +337,7 @@ public class LogWindow extends ListActivity implements StateListener { if (requestCode == START_VPN_CONFIG && resultCode==RESULT_OK) { String configuredVPN = data.getStringExtra(VpnProfile.EXTRA_PROFILEUUID); - final VpnProfile profile = ProfileManager.get(configuredVPN); + final VpnProfile profile = ProfileManager.get(this,configuredVPN); ProfileManager.getInstance(this).saveProfile(this, profile); // Name could be modified, reset List adapter |