From 0e9cb91697df7bc417f194a1e56fe9afbfd6b9d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Fri, 7 Jul 2023 18:18:33 +0200 Subject: [PATCH] Remove error prefix from incorrect password toast --- .../filemanager/pro/activities/DecompressActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt index a1e73c1c..a910d361 100644 --- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt @@ -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()