1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

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;
}