summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/fragments/VPNProfileList.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/blinkt/openvpn/fragments/VPNProfileList.java')
-rw-r--r--src/de/blinkt/openvpn/fragments/VPNProfileList.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/fragments/VPNProfileList.java b/src/de/blinkt/openvpn/fragments/VPNProfileList.java
index d24aafc5..ccd8ef47 100644
--- a/src/de/blinkt/openvpn/fragments/VPNProfileList.java
+++ b/src/de/blinkt/openvpn/fragments/VPNProfileList.java
@@ -279,7 +279,7 @@ public class VPNProfileList extends ListFragment {
if (requestCode == START_VPN_CONFIG) {
String configuredVPN = data.getStringExtra(VpnProfile.EXTRA_PROFILEUUID);
- VpnProfile profile = ProfileManager.get(configuredVPN);
+ VpnProfile profile = ProfileManager.get(getActivity(),configuredVPN);
getPM().saveProfile(getActivity(), profile);
// Name could be modified, reset List adapter
setListAdapter();
@@ -293,7 +293,7 @@ public class VPNProfileList extends ListFragment {
startActivityForResult(startImport, IMPORT_PROFILE);
} else if(requestCode == IMPORT_PROFILE) {
String profileUUID = data.getStringExtra(VpnProfile.EXTRA_PROFILEUUID);
- mArrayadapter.add(ProfileManager.get(profileUUID));
+ mArrayadapter.add(ProfileManager.get(getActivity(), profileUUID));
}
}