Fix: exporting all notes and single doc now both use metadata for author and title (#10280)

This commit is contained in:
Mochitto
2023-04-29 01:21:00 +02:00
committed by GitHub
parent c0615c3bda
commit 53079441f9

View File

@@ -321,13 +321,13 @@ function MyClipping:parseHistoryFile(clippings, history_file, doc_file)
return
end
local _, docname = util.splitFilePathName(doc_file)
local title, author = self:parseTitleFromPath(util.splitFileNameSuffix(docname), doc_file)
clippings[title] = {
local parsed_title, parsed_author = self:parseTitleFromPath(util.splitFileNameSuffix(docname), doc_file)
clippings[parsed_title] = {
file = doc_file,
title = title,
author = author,
title = stored.stats.title or parsed_title,
author = stored.stats.authors or parsed_author,
}
self:parseHighlight(stored.highlight, stored.bookmarks, clippings[title])
self:parseHighlight(stored.highlight, stored.bookmarks, clippings[parsed_title])
end
end