uri decode filename at the decompression activity

This commit is contained in:
tibbi 2020-06-07 13:45:45 +02:00
parent 4e3eb79f4f
commit b4b282a333

View file

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