xi-conversations

Minimal clone of thunderbird conversations
git clone https://git.ce9e.org/xi-conversations.git

commit
1096d69d4aa54f47acd2a4ce254f7d731bc9a7be
parent
1e14389232a82da7a70bd6b737efa1b6ab1e8630
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-08-12 09:16
fix: do not crash on missing folderMessage

Diffstat

M experiment-api/api.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/experiment-api/api.js b/experiment-api/api.js

@@ -43,7 +43,7 @@ var getConversation = function(msgs, cb) {
   43    43 		onItemsModified: function() {},
   44    44 		onItemsRemoved: function() {},
   45    45 		onQueryCompleted: function(collection) {
   46    -1 			cb(collection.items);
   -1    46 			cb(collection.items.filter(glodaMsg => glodaMsg.folderMessage));
   47    47 		},
   48    48 	};
   49    49