Skip to content

Commit 6caecb3

Browse files
author
Jan Guegel
committed
fix hardcoded error toast
fix hardcoded successful decompression toast fix hardcoded invalid password toast Signed-off-by: Jan Guegel <jan@guegel.eu>
1 parent 0dcf18c commit 6caecb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/kotlin/org/fossify/filemanager/activities/DecompressActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ class DecompressActivity : SimpleActivity() {
232232
} catch (passwordException: ZipException) {
233233
if (passwordException.type == Type.WRONG_PASSWORD) {
234234
if (password != null) {
235-
toast(getString(R.string.invalid_password))
235+
toast(R.string.invalid_password)
236236
passwordDialog?.clearPassword()
237237
} else {
238238
runOnUiThread {

0 commit comments

Comments
 (0)