summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2014-11-13 01:16:36 +0100
committerParménides GV <parmegv@sdf.org>2014-11-13 01:16:36 +0100
commit5870156057b9d1f6f0bd8c22824b7e0fd8ec300b (patch)
tree9a5ac547720e7ada2597ae9d09717ae46abd9dbc /app/src/main/java/se/leap
parent15d2881a189c1663ae1b8bd9ecf056af0dcc0ff0 (diff)
Delete all vpn profiles if updating them.
Diffstat (limited to 'app/src/main/java/se/leap')
-rw-r--r--app/src/main/java/se/leap/bitmaskclient/EIP.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/app/src/main/java/se/leap/bitmaskclient/EIP.java b/app/src/main/java/se/leap/bitmaskclient/EIP.java
index 7f15b944..00a0afb0 100644
--- a/app/src/main/java/se/leap/bitmaskclient/EIP.java
+++ b/app/src/main/java/se/leap/bitmaskclient/EIP.java
@@ -94,7 +94,6 @@ public final class EIP extends IntentService {
private static ResultReceiver mReceiver;
private static boolean mBound = false;
- private static int parsedEipSerial;
private static JSONObject eipDefinition = null;
private static OVPNGateway activeGateway = null;
@@ -323,16 +322,12 @@ public final class EIP extends IntentService {
if(eip_definition_string.isEmpty() == false) {
eipDefinition = new JSONObject(eip_definition_string);
}
- parsedEipSerial = preferences.getInt(PARSED_SERIAL, 0);
+ deleteAllVpnProfiles();
+ updateGateways();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
- if(parsedEipSerial == 0) {
- deleteAllVpnProfiles();
- }
- if (eipDefinition != null && eipDefinition.optInt("serial") >= parsedEipSerial)
- updateGateways();
}
private void deleteAllVpnProfiles() {