From d444c42f2d53c2cc518abfd9cdc1f20cb1e3de99 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sat, 14 Sep 2024 11:54:05 +1200 Subject: [PATCH] Fix creating group role only instances --- html/src/app.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html/src/app.js b/html/src/app.js index 788661af..97ff69a5 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -20717,8 +20717,11 @@ speechSynthesis.getVoices(); params.groupAccessType = D.groupAccessType; params.ownerId = D.groupId; params.queueEnabled = D.queueEnabled; - if (D.groupAccessType === 'member') { + if (D.groupAccessType === 'members') { params.roleIds = D.roleIds; + params.canRequestInvite = true; + } else if (D.groupAccessType === 'plus') { + params.canRequestInvite = true; } } API.createInstance(params)