Speed up AvatarProvider.

This commit is contained in:
Alex Hart
2023-08-28 19:48:35 -03:00
committed by Greyson Parrelli
parent 847651ead7
commit 553da1e7e8
2 changed files with 14 additions and 6 deletions

View File

@@ -80,7 +80,7 @@ public class CallNotificationBuilder {
builder.setCategory(NotificationCompat.CATEGORY_CALL);
builder.setFullScreenIntent(pendingIntent, true);
Person person = ConversationUtil.buildPersonWithoutIcon(context, recipient);
Person person = ConversationUtil.buildPerson(context, recipient);
builder.addPerson(person);
if (deviceVersionSupportsIncomingCallStyle()) {
@@ -102,7 +102,7 @@ public class CallNotificationBuilder {
builder.setPriority(NotificationCompat.PRIORITY_DEFAULT);
builder.setCategory(NotificationCompat.CATEGORY_CALL);
Person person = ConversationUtil.buildPersonWithoutIcon(context, recipient);
Person person = ConversationUtil.buildPerson(context, recipient);
builder.addPerson(person);
if (deviceVersionSupportsIncomingCallStyle()) {