From 089116d0693b9e38c3fe21c54da13cca745b60fa Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Tue, 1 Feb 2022 18:26:23 -0800 Subject: [PATCH] Use identity key from storage service --- ts/models/conversations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/models/conversations.ts b/ts/models/conversations.ts index 69a461e225..5635090dfe 100644 --- a/ts/models/conversations.ts +++ b/ts/models/conversations.ts @@ -2549,7 +2549,7 @@ export class ConversationModel extends window.Backbone const uuid = this.getUuid(); const beginningVerified = this.get('verified'); let keyChange = false; - if (options.viaSyncMessage) { + if (options.viaSyncMessage || options.viaStorageServiceSync) { strictAssert( uuid, `Sync message didn't update uuid for conversation: ${this.id}`