This commit is contained in:
Timo K
2026-01-12 12:34:50 +01:00
parent 8d8eb09922
commit 89e5e5b10a

View File

@@ -47,7 +47,7 @@ import {
} from "matrix-js-sdk/lib/matrixrtc"; } from "matrix-js-sdk/lib/matrixrtc";
import { type IWidgetApiRequest } from "matrix-widget-api"; import { type IWidgetApiRequest } from "matrix-widget-api";
import { type CallMembershipIdentityParts } from "matrix-js-sdk/lib/matrixrtc/EncryptionManager"; import { type CallMembershipIdentityParts } from "matrix-js-sdk/lib/matrixrtc/EncryptionManager";
import { randomUUID } from "crypto"; import { v4 as uuidv4 } from "uuid";
import { import {
LocalUserMediaViewModel, LocalUserMediaViewModel,
@@ -432,7 +432,7 @@ export function createCallViewModel$(
userId, userId,
deviceId, deviceId,
// This will only be consumed by the sticky membership manager. So it has no impact on legacy calls. // This will only be consumed by the sticky membership manager. So it has no impact on legacy calls.
memberId: randomUUID(), memberId: uuidv4(),
}; };
const localTransport$ = createLocalTransport$({ const localTransport$ = createLocalTransport$({