Better error message for room not viewed

This commit is contained in:
Luke Barnard 2016-09-05 15:16:22 +01:00
parent 1c29c95990
commit efccdab0ad

View File

@ -265,7 +265,7 @@ const onMessage = function(event) {
return;
}
if (roomId !== currentRoomId) {
sendError(event, "Room not in view");
sendError(event, "Room " + roomId + " not in view");
return;
}