2
0
mirror of https://github.com/koreader/koreader synced 2024-11-10 01:10:34 +00:00

export highlights only if highlighted text is not nil

This commit is contained in:
chrox 2013-10-20 12:32:35 +08:00
parent 92947ca858
commit 8b6bf2e72b

View File

@ -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")