don't break the layout with unrecognised join events

This commit is contained in:
Matthew Hodgson 2015-07-18 02:17:10 +01:00
parent aa4f9abd5c
commit 5a12a4a1a3

View File

@ -32,7 +32,7 @@ function textForMemberEvent(ev) {
if (!ev.target) console.warn("Join message has no target! -- " + ev.getContent().state_key);
return targetName + " joined the room.";
}
return '';
return 'Unrecognised join event';
case 'leave':
if (ev.getSender() === ev.getStateKey()) {
return targetName + " left the room.";