disable fingerprint unlock when unlocking fails with invalid key

This commit is contained in:
Philipp Crocoll
2016-01-02 21:57:49 +01:00
parent b3416410f0
commit aed1d88f75
5 changed files with 67 additions and 30 deletions

View File

@@ -34,9 +34,9 @@ namespace keepass2android
set { _onFinishToRun = value; }
}
protected void Finish(bool result, String message) {
protected void Finish(bool result, String message, Exception exception = null) {
if ( OnFinishToRun != null ) {
OnFinishToRun.SetResult(result, message);
OnFinishToRun.SetResult(result, message, exception);
OnFinishToRun.Run();
}
}