diff --git a/js/models/conversations.js b/js/models/conversations.js index fbde4bf3363..0a689f58595 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -339,12 +339,12 @@ await this.initialPromise; const verified = await this.safeGetVerified(); + this.set({ verified }); + // we don't await here because we don't need to wait for this to finish - window.Signal.Data.updateConversation( - this.id, - { verified }, - { Conversation: Whisper.Conversation } - ); + window.Signal.Data.updateConversation(this.id, this.attributes, { + Conversation: Whisper.Conversation, + }); return; }