Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1.1 Apache Release
-
None
-
all
Description
i mentioned a bug in RoomWebService.java in public Long updateRoomWithModerationQuestionsAudioTypeAndHideOptions.
Boolean isAudioOnly is not in roomManager.updateRoomInternal. This is the reason why updateRoomWithModerationQuestionsAudioTypeAndHideOptions sets isAudioOnly always to true.
roomManager.updateRoomInternal(room_id, roomtypes_id,
name, ispublic, comment, numberOfPartizipants, null,
appointment, isDemoRoom, demoTime, isModeratedRoom,
null, allowUserQuestions, true, true, false, "", "",
Last line should be changed to:
null, allowUserQuestions, isAudioOnly, true, false, "", "",