mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 04:58:45 +00:00
Utilize iconless person objects until we can fix AvatarProvider.
This commit is contained in:
@@ -80,7 +80,7 @@ public class CallNotificationBuilder {
|
||||
builder.setCategory(NotificationCompat.CATEGORY_CALL);
|
||||
builder.setFullScreenIntent(pendingIntent, true);
|
||||
|
||||
Person person = ConversationUtil.buildPerson(context, recipient);
|
||||
Person person = ConversationUtil.buildPersonWithoutIcon(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.buildPerson(context, recipient);
|
||||
Person person = ConversationUtil.buildPersonWithoutIcon(context, recipient);
|
||||
builder.addPerson(person);
|
||||
|
||||
if (deviceVersionSupportsIncomingCallStyle()) {
|
||||
|
||||
Reference in New Issue
Block a user