diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-01-25 22:13:42 -0700 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-01-25 22:13:42 -0700 |
commit | 8dbb4517b07c42c3b37b0764d63973b5b1ed5ee6 (patch) | |
tree | 80898c150b116fca948f618288e0afcf98444add /src/se | |
parent | 2bb6e8c9a956c56658807c7f2d25ab850243bbe6 (diff) |
Replace hardcoded package name string, FIXME but closes #1494
Diffstat (limited to 'src/se')
-rw-r--r-- | src/se/leap/openvpn/VpnProfile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/se/leap/openvpn/VpnProfile.java b/src/se/leap/openvpn/VpnProfile.java index 293a3d06..38ee3c83 100644 --- a/src/se/leap/openvpn/VpnProfile.java +++ b/src/se/leap/openvpn/VpnProfile.java @@ -46,7 +46,7 @@ public class VpnProfile implements Serializable{ public static final int TYPE_USERPASS_KEYSTORE = 7; // Don't change this, not all parts of the program use this constant - public static final String EXTRA_PROFILEUUID = "se.leap.openvpn.profileUUID"; + public static final String EXTRA_PROFILEUUID = "se.leap.leapclient.profileUUID"; // TODO this feels wrong. See Issue #1494 public static final String INLINE_TAG = "[[INLINE]]"; private static final String OVPNCONFIGFILE = "android.conf"; |