diff --git a/ts/services/calling.ts b/ts/services/calling.ts index 81324aa90d..87e9a37b30 100644 --- a/ts/services/calling.ts +++ b/ts/services/calling.ts @@ -2024,9 +2024,7 @@ export class CallingClass { conversationId: string, creatorBytes: undefined | Readonly ): void { - const creatorUuid = creatorBytes - ? arrayBufferToUuid(typedArrayToArrayBuffer(creatorBytes)) - : undefined; + const creatorUuid = creatorBytes ? bytesToUuid(creatorBytes) : undefined; const creatorConversation = window.ConversationController.get(creatorUuid); if (creatorConversation && isMe(creatorConversation.attributes)) { return;