android: Don't try to load the profile with ID 0

This commit is contained in:
Tobias Brunner
2012-08-31 18:24:22 +02:00
parent 825c192d4f
commit 7fedacb2e7
@@ -346,7 +346,7 @@ public class VpnProfileDetailActivity extends Activity
String alias = null; String alias = null;
getActionBar().setTitle(R.string.add_profile); getActionBar().setTitle(R.string.add_profile);
if (mId != null) if (mId != null && mId != 0)
{ {
mProfile = mDataSource.getVpnProfile(mId); mProfile = mDataSource.getVpnProfile(mId);
if (mProfile != null) if (mProfile != null)