From c4a47fd12ecdce09c4bdf046a71e565be39d3f1e Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 27 Apr 2022 18:40:00 +0100 Subject: [PATCH] Fix createGroupCall arguments Comma instead of a colon... --- src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index 0fab62a30ae..3ce67168ce9 100644 --- a/src/client.ts +++ b/src/client.ts @@ -1322,7 +1322,7 @@ export class MatrixClient extends EventEmitter { public async createGroupCall( roomId: string, type: GroupCallType, - isPtt, boolean, + isPtt: boolean, intent: GroupCallIntent, dataChannelsEnabled?: boolean, dataChannelOptions?: IGroupCallDataChannelOptions,