Skip to content

Commit d808158

Browse files
author
vindiola911
authored
Fixed API Call for getMeetingInfo
The function was using "ApiMethod::IS_MEETING_RUNNING" instead of "ApiMethod::GET_MEETING_INFO" which would return the incorrect xml response for said function.
1 parent f5d4bde commit d808158

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/BigBlueButton.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public function getMeetings()
215215
*/
216216
public function getMeetingInfoUrl($meetingParams)
217217
{
218-
return $this->urlBuilder->buildUrl(ApiMethod::IS_MEETING_RUNNING, $meetingParams->getHTTPQuery());
218+
return $this->urlBuilder->buildUrl(ApiMethod::GET_MEETING_INFO, $meetingParams->getHTTPQuery());
219219
}
220220

221221
/**

0 commit comments

Comments
 (0)