mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
export highlights only if highlighted text is not nil
This commit is contained in:
@@ -320,7 +320,7 @@ end
|
||||
function ReaderHighlight:exportToClippings(page, item)
|
||||
DEBUG("export highlight to My Clippings")
|
||||
local clippings = io.open("/mnt/us/documents/My Clippings.txt", "a+")
|
||||
if clippings then
|
||||
if clippings and item.text then
|
||||
local current_locale = os.setlocale()
|
||||
os.setlocale("C")
|
||||
clippings:write(self.document.file:gsub("(.*/)(.*)", "%2").."\n")
|
||||
|
||||
Reference in New Issue
Block a user