bigbluebutton / bigbluebutton-api-php

Offical @BigBlueButton PHP API

Home Page:https://github.com/bigbluebutton/bigbluebutton/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API call create KO, wrong parameter `breakoutRoomsPrivateChatEnabled(`

malakhi81 opened this issue · comments

In BigBlueButton\Parameters\CreateMeetingParameters::getHTTPQuery

this line break the call create

'breakoutRoomsPrivateChatEnabled('       => $this->isBreakoutRoomsPrivateChatEnabled() ? 'true' : 'false',

It must be without the parenthesis

'breakoutRoomsPrivateChatEnabled'       => $this->isBreakoutRoomsPrivateChatEnabled() ? 'true' : 'false',