From b4b282a333e2c4185c86718deb984636ba0fa2fd Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 7 Jun 2020 13:45:45 +0200 Subject: [PATCH] uri decode filename at the decompression activity --- .../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 5f02b6a5..6995428f 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 @@ -33,7 +33,7 @@ class DecompressActivity : SimpleActivity() { } val realPath = getRealPathFromURI(uri!!) - title = realPath?.getFilenameFromPath() ?: uri.toString().getFilenameFromPath() + title = realPath?.getFilenameFromPath() ?: Uri.decode(uri.toString().getFilenameFromPath()) fillAllListItems(uri!!) updateCurrentPath("") }