From f977f261d61c434df0aedcfadb0d8f31c6dbdca7 Mon Sep 17 00:00:00 2001 From: Alex Hart Date: Mon, 28 Aug 2023 12:52:45 -0300 Subject: [PATCH] Utilize iconless person objects until we can fix AvatarProvider. --- .../securesms/webrtc/CallNotificationBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/webrtc/CallNotificationBuilder.java b/app/src/main/java/org/thoughtcrime/securesms/webrtc/CallNotificationBuilder.java index 415b9173eb..401d13885c 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/webrtc/CallNotificationBuilder.java +++ b/app/src/main/java/org/thoughtcrime/securesms/webrtc/CallNotificationBuilder.java @@ -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()) {