Skip to content

Commit

Permalink
fix(mail): autocomplete can find two lists named the same but in diff…
Browse files Browse the repository at this point in the history
…erent address books
  • Loading branch information
QHivert authored and WoodySlum committed May 30, 2023
1 parent 24200e7 commit 854e83c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/WebServerResources/js/Mailer/MessageEditorController.js
Expand Up @@ -305,7 +305,7 @@
});
// Remove duplicates
return _.uniqBy(explodedCards, function(card) {
return card.$$fullname + ' ' + card.$$email;
return card.$$fullname + ' ' + card.$$email + ' ' + card.containername;
});
});
};
Expand Down

0 comments on commit 854e83c

Please sign in to comment.