diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2014-03-01 18:49:35 -0800 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2014-03-01 18:49:35 -0800 |
commit | fd84feba5aa3ad86c54ed99d62e08be9f1681d57 (patch) | |
tree | 6d4bbb0086c2ce40853a13204f2dc8aa168dfd26 /src/se | |
parent | 8ddd506b648ff4b91d506c8bd9b423e6c1a9f6b8 (diff) |
Better host matching when updating gateways list
Diffstat (limited to 'src/se')
-rw-r--r-- | src/se/leap/bitmaskclient/EIP.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/se/leap/bitmaskclient/EIP.java b/src/se/leap/bitmaskclient/EIP.java index c9d3e5ba..169178d1 100644 --- a/src/se/leap/bitmaskclient/EIP.java +++ b/src/se/leap/bitmaskclient/EIP.java @@ -452,9 +452,10 @@ public final class EIP extends IntentService { for (Iterator<VpnProfile> it = profiles.iterator(); it.hasNext(); ){ VpnProfile p = it.next(); try { - if ( p.mName.contains( gateway.getString("host") ) ) + if ( p.mName.equalsIgnoreCase( gateway.getString("host") ) ){ it.remove(); vpl.removeProfile(context, p); + } } catch (JSONException e) { // TODO Auto-generated catch block e.printStackTrace(); |