mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Do not include author in OPDS download filename if nil or empty (#7384)
This commit is contained in:
@@ -552,7 +552,13 @@ end
|
||||
function OPDSBrowser:downloadFile(item, filetype, remote_url)
|
||||
-- Download to user selected folder or last opened folder.
|
||||
local download_dir = self.getCurrentDownloadDir()
|
||||
local filename = util.getSafeFilename(item.author .. " - " .. item.title .. "." .. filetype, download_dir)
|
||||
|
||||
local filename = item.title .. "." .. filetype
|
||||
if item.author then
|
||||
filename = item.author .. " - " .. filename
|
||||
end
|
||||
|
||||
filename = util.getSafeFilename(filename, download_dir)
|
||||
local local_path = download_dir .. "/" .. filename
|
||||
local_path = util.fixUtf8(local_path, "_")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user