FileManager: safe initial path (#11774)

We do not like trailing slash in the path (except root).
Closes #11772.
This commit is contained in:
hius07
2024-05-16 21:42:08 +03:00
committed by GitHub
parent 05168b22f5
commit db63db11b2
2 changed files with 2 additions and 3 deletions

View File

@@ -558,7 +558,6 @@ function ReaderUI:showFileManager(file)
local last_dir, last_file
if file then
last_dir = util.splitFilePathName(file)
last_dir = last_dir:match("(.*)/")
last_file = file
else
last_dir, last_file = self:getLastDirFile(true)