mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Fixed address encoding
This commit is contained in:
@@ -73,7 +73,7 @@ public class ContactInfo {
|
||||
return new ContactInfo();
|
||||
InternetAddress address = (InternetAddress) addresses[0];
|
||||
|
||||
String key = address.toString();
|
||||
String key = MessageHelper.formatAddresses(new Address[]{address});
|
||||
synchronized (emailContactInfo) {
|
||||
ContactInfo info = emailContactInfo.get(key);
|
||||
if (info != null && !info.isExpired())
|
||||
|
||||
Reference in New Issue
Block a user