diff options
| -rw-r--r-- | src/de/blinkt/openvpn/LaunchVPN.java | 12 | 
1 files changed, 7 insertions, 5 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java index b031fe2f..5d17e6b3 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -83,15 +83,17 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener {  	public void onCreate(Bundle icicle) {  		super.onCreate(icicle); +		mPM =ProfileManager.getInstance(this); + +	} +	 +	@Override +	protected void onStart() { +		super.onStart();  		// Resolve the intent  		final Intent intent = getIntent();  		final String action = intent.getAction(); - -		mPM =ProfileManager.getInstance(this); - - -  		// If the intent is a request to create a shortcut, we'll do that and exit  		if(Intent.ACTION_MAIN.equals(action)) {  | 
