From 6aac2b00c923966404f1e3e0bfd3430a8ab546e1 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Fri, 5 Feb 2016 19:03:58 +0000 Subject: [PATCH] Correct typo in #2272 --- plugins/tiddlywiki/evernote/modules/enex-deserializer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tiddlywiki/evernote/modules/enex-deserializer.js b/plugins/tiddlywiki/evernote/modules/enex-deserializer.js index 494bbecb4..6e250fb16 100644 --- a/plugins/tiddlywiki/evernote/modules/enex-deserializer.js +++ b/plugins/tiddlywiki/evernote/modules/enex-deserializer.js @@ -40,7 +40,7 @@ exports["application/enex+xml"] = function(text,fields) { tags: Array.prototype.slice.call(noteNode.querySelectorAll("tag")).map(function(tag) { return tag.textContent; }).join(","), text: noteNode.querySelector("content").textContent }; - $tw.utils.each(noteNodes.querySelector("note-attributes").childNodes,function(attrNode) { + $tw.utils.each(noteNode.querySelector("note-attributes").childNodes,function(attrNode) { result[attrNode.tagName] = attrNode.textContent; }); results.push(result);