summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/core/ProfileManager.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-02-02 18:01:03 +0100
committerArne Schwabe <arne@rfc2549.org>2014-02-02 18:01:03 +0100
commit83a741a917e56f1d6079a95394f72a2c7cf709ed (patch)
tree89dd03c401d995e878fd5dd7025202b6af2a460b /src/de/blinkt/openvpn/core/ProfileManager.java
parentec5b4540d6f163861c6d639e5aba853e8702aae1 (diff)
Implement bypassing the VPN when accessing local resources
Diffstat (limited to 'src/de/blinkt/openvpn/core/ProfileManager.java')
-rw-r--r--src/de/blinkt/openvpn/core/ProfileManager.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/core/ProfileManager.java b/src/de/blinkt/openvpn/core/ProfileManager.java
index a1dd8da5..4cfbcc8e 100644
--- a/src/de/blinkt/openvpn/core/ProfileManager.java
+++ b/src/de/blinkt/openvpn/core/ProfileManager.java
@@ -171,7 +171,8 @@ public class ProfileManager {
// Sanity check
if(vp==null || vp.mName==null || vp.getUUID()==null)
continue;
-
+
+ vp.upgradeProfile();
profiles.put(vp.getUUID().toString(), vp);
} catch (StreamCorruptedException e) {