|
@@ -593,7 +593,7 @@ public class RoomServiceImpl implements RoomService {
|
|
|
action.role(roleEnum.getValue());
|
|
|
}
|
|
|
action.handUpOn(roomMember.isHand())
|
|
|
- .microphone(playMidi)
|
|
|
+ .microphone(!schedule.getMuteAll())
|
|
|
.timestamp(curTime.getTime())
|
|
|
.camera(true)
|
|
|
.sendUserInfo(getSendUser(userId,roleEnum));
|
|
@@ -1012,11 +1012,11 @@ public class RoomServiceImpl implements RoomService {
|
|
|
display += "?userId=" + userId + "?uri=" + uri;
|
|
|
// CheckUtils.checkArgument(uri != null, "uri must't be null");
|
|
|
// CheckUtils.checkArgument(whiteboardDao.findByRidAndWbid(roomId, uri).size() > 0, "whiteboard not exist");
|
|
|
+ roomDao.updateDisplayByRid(roomId, display);
|
|
|
if (TencentCloudRTCPlugin.PLUGIN_NAME.equals(roomServiceProviter)) {
|
|
|
|
|
|
sendDisplayMessage(display, roomMember);
|
|
|
} else {
|
|
|
- roomDao.updateDisplayByRid(roomId, display);
|
|
|
DisplayMessage displayMessage = new DisplayMessage(display);
|
|
|
imHelper.publishMessage(userId, roomId, displayMessage);
|
|
|
}
|