xi-conversations

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

commit
a6b4d970fdf5a6cce0df2033e4e6d1eec59df714
parent
881d283b0cc941c867037c8d57d02f9b073bc681
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2024-09-15 07:52
tb128: reference parseMailboxString() in parseContacts()

Diffstat

M content/js/util.js 1 +

1 files changed, 1 insertions, 0 deletions


diff --git a/content/js/util.js b/content/js/util.js

@@ -79,6 +79,7 @@ export var pseudoRandomColor = function(s) {
   79    79 };
   80    80 
   81    81 export var parseContacts = function(raw) {
   -1    82 	// sync version of messengerUtilities.parseMailboxString()
   82    83 	var contacts = [];
   83    84 	for (var r of raw) {
   84    85 		var match = /(.*) <(.*)>/.exec(r);