Skip to content

Commit

Permalink
Defensively set the signal conversation name
Browse files Browse the repository at this point in the history
Co-authored-by: Josh Perez <60019601+josh-signal@users.noreply.github.com>
  • Loading branch information
automated-signal and josh-signal committed Dec 14, 2022
1 parent 38a672a commit 6cca2b9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ts/ConversationController.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 6cca2b9

Please sign in to comment.