From 45f77455a9758dd24474065b0a62a716a696d0fa Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Mon, 7 Apr 2025 21:15:38 +0200 Subject: [PATCH] [plugin] calibre: fix a nil concatenation typo (#13484) --- plugins/calibre.koplugin/search.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/calibre.koplugin/search.lua b/plugins/calibre.koplugin/search.lua index bc967096d..93445e0e8 100644 --- a/plugins/calibre.koplugin/search.lua +++ b/plugins/calibre.koplugin/search.lua @@ -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