Skip to content

Commit

Permalink
add support for BigBlueButton API version 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry de Graaff committed Jan 22, 2022
1 parent 957ff43 commit fe988dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

npm install
zimlet build
zimlet package -v 0.0.2 --zimbraXVersion ">=2.0.0" -n "zimbra-zimlet-bigbluebutton" --desc "Schedule BigBlueButton Meetings from Zimbra calendar" -l "BigBlueButton Zimlet"
zimlet package -v 0.0.3 --zimbraXVersion ">=2.0.0" -n "zimbra-zimlet-bigbluebutton" --desc "Schedule BigBlueButton Meetings from Zimbra calendar" -l "BigBlueButton Zimlet"
2 changes: 1 addition & 1 deletion src/components/more/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function createMore(props, context) {
attendeePassword = pwgen();
}
let xhr = new XMLHttpRequest();
xhr.open("GET", '/service/extension/bigbluebutton?action=getNewMeetingId&attendeePassword=' + attendeePassword + '&moderatorPassword=' + moderatorPassword, true);
xhr.open("GET", '/service/extension/bigbluebutton?action=getNewMeetingId&attendeePassword=' + attendeePassword + '&moderatorPassword=' + moderatorPassword +'&hostname='+parent.window.location.hostname, true);
xhr.send();
xhr.onreadystatechange = function (oEvent) {
var meetingId = "";
Expand Down

0 comments on commit fe988dc

Please sign in to comment.