diff --git a/ts/models/messages.ts b/ts/models/messages.ts index ded2ae465..37600f02b 100644 --- a/ts/models/messages.ts +++ b/ts/models/messages.ts @@ -905,7 +905,13 @@ export class MessageModel extends window.Backbone.Model { } getPropsForDeliveryIssue(): DeliveryIssuePropsType { - const sender = this.getContact()?.format(); + const sourceUuid = this.get('sourceUuid'); + const sender = sourceUuid + ? window.ConversationController.getOrCreate( + sourceUuid, + 'private' + ).format() + : PLACEHOLDER_CONTACT; return { sender,