Skip to content

Commit b4b282a

Browse files
committed
uri decode filename at the decompression activity
1 parent 4e3eb79 commit b4b282a

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
@@ -33,7 +33,7 @@ class DecompressActivity : SimpleActivity() {
3333
}
3434

3535
val realPath = getRealPathFromURI(uri!!)
36-
title = realPath?.getFilenameFromPath() ?: uri.toString().getFilenameFromPath()
36+
title = realPath?.getFilenameFromPath() ?: Uri.decode(uri.toString().getFilenameFromPath())
3737
fillAllListItems(uri!!)
3838
updateCurrentPath("")
3939
}

0 commit comments

Comments
 (0)