From 3a6346aa63b20c9a2917bea014614619f33e6a64 Mon Sep 17 00:00:00 2001 From: Robert Long Date: Thu, 28 Apr 2022 11:13:20 -0700 Subject: [PATCH] Create a voice group call when using ptt --- src/matrix-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix-utils.js b/src/matrix-utils.js index bef1b80..bdca07d 100644 --- a/src/matrix-utils.js +++ b/src/matrix-utils.js @@ -111,7 +111,7 @@ export async function createRoom(client, name, isPtt = false) { await client.createGroupCall( room_id, - GroupCallType.Video, + isPtt ? GroupCallType.Voice : GroupCallType.Video, isPtt, GroupCallIntent.Prompt );