avoid opening password activity when database is already open, closes https://github.com/PhilippC/keepass2android/issues/706
This commit is contained in:
		| @@ -215,16 +215,30 @@ namespace keepass2android | ||||
|  | ||||
|             if (!string.IsNullOrEmpty(Intent.GetStringExtra(Util.KeyFilename))) | ||||
|             { | ||||
|                 //forward to password activity | ||||
|                 Intent i = new Intent(this, typeof(PasswordActivity)); | ||||
|                 IOConnectionInfo ioc = new IOConnectionInfo(); | ||||
|                 Util.SetIoConnectionFromIntent(ioc, Intent); | ||||
|  | ||||
|                 if (App.Kp2a.TrySelectCurrentDb(ioc)) | ||||
|                 { | ||||
|                     if (!OpenAutoExecEntries(App.Kp2a.CurrentDb)) | ||||
|                     { | ||||
|                         LaunchingOther = true; | ||||
|                         AppTask.CanActivateSearchViewOnStart = true; | ||||
|                         AppTask.LaunchFirstGroupActivity(this); | ||||
|                     } | ||||
|                 } | ||||
|                 else | ||||
|                 { | ||||
|                     //forward to password activity | ||||
|                     Intent i = new Intent(this, typeof(PasswordActivity)); | ||||
|                     Util.PutIoConnectionToIntent(ioc, i); | ||||
|                     i.PutExtra(PasswordActivity.KeyKeyfile, i.GetStringExtra(PasswordActivity.KeyKeyfile)); | ||||
|                     i.PutExtra(PasswordActivity.KeyPassword, i.GetStringExtra(PasswordActivity.KeyPassword)); | ||||
|                     LaunchingOther = true; | ||||
|                     StartActivityForResult(i, ReqCodeOpenNewDb); | ||||
|                 } | ||||
|  | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|                 if (Intent.Action == Intent.ActionView) | ||||
| @@ -282,6 +296,14 @@ namespace keepass2android | ||||
|  | ||||
|             } | ||||
|  | ||||
|             if (App.Kp2a.TrySelectCurrentDb(ioc)) | ||||
|             { | ||||
|                 if (OpenAutoExecEntries(App.Kp2a.CurrentDb)) return false; | ||||
|                 LaunchingOther = true; | ||||
|                 AppTask.CanActivateSearchViewOnStart = true; | ||||
|                 AppTask.LaunchFirstGroupActivity(this); | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|                 Intent launchIntent = new Intent(this, typeof(PasswordActivity)); | ||||
|                 Util.PutIoConnectionToIntent(ioc, launchIntent); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Philipp Crocoll
					Philipp Crocoll