mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 17:27:00 +00:00
You
This commit is contained in:
parent
07287df049
commit
27b502c530
1 changed files with 5 additions and 2 deletions
|
@ -4058,8 +4058,11 @@ class Core {
|
|||
if (info[0].hasPhoto())
|
||||
mbuilder.setLargeIcon(info[0].getPhotoBitmap());
|
||||
|
||||
if (info[0].hasLookupUri())
|
||||
mbuilder.addPerson(info[0].getLookupUri().toString());
|
||||
if (info[0].hasLookupUri()) {
|
||||
Person.Builder you = new Person.Builder()
|
||||
.setUri(info[0].getLookupUri().toString());
|
||||
mbuilder.addPerson(you.build());
|
||||
}
|
||||
|
||||
Integer color = getColor(message);
|
||||
if (pro && color != null) {
|
||||
|
|
Loading…
Reference in a new issue