mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Fixed icon caching
This commit is contained in:
parent
403d7a3fa2
commit
9afdacadd2
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public class ContactInfo {
|
||||||
return new ContactInfo();
|
return new ContactInfo();
|
||||||
InternetAddress address = (InternetAddress) addresses[0];
|
InternetAddress address = (InternetAddress) addresses[0];
|
||||||
|
|
||||||
String key = address.getAddress();
|
String key = MessageHelper.formatAddresses(new Address[]{address});
|
||||||
synchronized (emailContactInfo) {
|
synchronized (emailContactInfo) {
|
||||||
ContactInfo info = emailContactInfo.get(key);
|
ContactInfo info = emailContactInfo.get(key);
|
||||||
if (info != null && !info.isExpired())
|
if (info != null && !info.isExpired())
|
||||||
|
|
Loading…
Reference in a new issue