Defensively set the signal conversation name

This commit is contained in:
Josh Perez 2022-12-02 12:34:46 -05:00 committed by GitHub
parent 6a81b339b8
commit 40e7518b9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -424,6 +424,11 @@ export class ConversationController {
updateConversation(conversation.attributes);
}
if (!conversation.get('profileName')) {
conversation.set({ profileName: 'Signal' });
updateConversation(conversation.attributes);
}
this._signalConversationId = conversation.id;
return conversation;