If authentication fails while unlock, resume VaultListActivity

Fixes #396
This commit is contained in:
Julian Raufelder 2021-12-03 16:30:32 +01:00
parent ef97a3618e
commit ce9e76bf23
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D

View File

@ -112,6 +112,7 @@ class UnlockVaultPresenter @Inject constructor(
view?.closeDialog()
val error = result.getSingleResult(Throwable::class.java)
error?.let { showError(it) }
finishWithResult(null)
}
}
@ -219,6 +220,7 @@ class UnlockVaultPresenter @Inject constructor(
view?.closeDialog()
val error = result.getSingleResult(Throwable::class.java)
error?.let { showError(it) }
finishWithResult(null)
}
}