mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-16 01:52:15 +01:00
Fix compile error: use bytesToUuid in calling service
This commit is contained in:
@@ -2024,9 +2024,7 @@ export class CallingClass {
|
||||
conversationId: string,
|
||||
creatorBytes: undefined | Readonly<Uint8Array>
|
||||
): 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;
|
||||
|
||||
Reference in New Issue
Block a user