mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Text editor: refresh path on saving file (#11396)
File size was changed.
This commit is contained in:
@@ -493,10 +493,11 @@ function TextEditor:readFileContent(file_path)
|
||||
end
|
||||
|
||||
function TextEditor:saveFileContent(file_path, content)
|
||||
local file, err = io.open(file_path, "wb")
|
||||
if file then
|
||||
file:write(content)
|
||||
file:close()
|
||||
local ok, err = util.writeToFile(content, file_path)
|
||||
if ok then
|
||||
if self.ui.file_chooser then
|
||||
self.ui.file_chooser:refreshPath()
|
||||
end
|
||||
logger.info("TextEditor: saved file", file_path)
|
||||
return true
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user