Skip to content

Commit 0e9cb91

Browse files
committed
Remove error prefix from incorrect password toast
1 parent e560539 commit 0e9cb91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/DecompressActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class DecompressActivity : SimpleActivity() {
195195
} catch (passwordException: ZipException) {
196196
if (passwordException.type == Type.WRONG_PASSWORD) {
197197
if (password != null) {
198-
showErrorToast(getString(R.string.invalid_password))
198+
toast(getString(R.string.invalid_password))
199199
passwordDialog?.clearPassword()
200200
} else {
201201
askForPassword()

0 commit comments

Comments
 (0)