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("") }