mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
uri decode filename at the decompression activity
This commit is contained in:
@ -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("")
|
||||
}
|
||||
|
Reference in New Issue
Block a user