Remove error prefix from incorrect password toast

This commit is contained in:
Ensar Sarajčić 2023-07-07 18:18:33 +02:00
parent e56053966c
commit 0e9cb91697
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ class DecompressActivity : SimpleActivity() {
} catch (passwordException: ZipException) {
if (passwordException.type == Type.WRONG_PASSWORD) {
if (password != null) {
showErrorToast(getString(R.string.invalid_password))
toast(getString(R.string.invalid_password))
passwordDialog?.clearPassword()
} else {
askForPassword()