mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[plugin] calibre: fix a nil concatenation typo (#13484)
This commit is contained in:
@@ -141,8 +141,8 @@ local function getBookInfo(book)
|
||||
return id
|
||||
end
|
||||
-- all entries can be empty, except size, which is always filled by calibre.
|
||||
local title = _("Title:") .. " " .. book.title or "-"
|
||||
local authors = _("Author(s):") .. " " .. getEntries(book.authors) or "-"
|
||||
local title = _("Title:") .. " " .. (book.title or "-")
|
||||
local authors = _("Author(s):") .. " " .. (getEntries(book.authors) or "-")
|
||||
local size = _("Size:") .. " " .. util.getFriendlySize(book.size) or _("Unknown")
|
||||
local tags = getEntries(book.tags)
|
||||
if tags then
|
||||
|
||||
Reference in New Issue
Block a user