SEBSERV-236 fixed

This commit is contained in:
anhefti 2021-10-28 14:33:51 +02:00
parent 299769bcb6
commit 7a05820274
2 changed files with 2 additions and 2 deletions

View file

@ -487,7 +487,7 @@ public class MonitoringProctoringService {
try {
final boolean active = room.roomSize > 0 && !room.isOpen;
final boolean active = room.roomSize > 0 /* && !room.isOpen SEBSERV-236 */;
final Display display = pageContext.getRoot().getDisplay();
final PageAction action = (PageAction) treeItem.getData(ActionPane.ACTION_EVENT_CALL_KEY);
final Image image = active

View file

@ -101,7 +101,7 @@ public class ProctoringGUIService {
public boolean isCollectingRoomEnabled(final String roomName) {
try {
final Pair<RemoteProctoringRoom, TreeItem> pair = this.collectingRoomsActionState.get(roomName);
return pair.a.roomSize > 0 && !pair.a.isOpen;
return pair.a.roomSize > 0 /* && !pair.a.isOpen SEBSERV-236 */;
} catch (final Exception e) {
log.error("Failed to get actual collecting room size for room: {} cause: ", roomName, e.getMessage());
return false;