repo: janusweb action: commit revision: path_from: revision_from: 719b713b2ff83713e1dc7908c91c019953e134d9: path_to: revision_to:
commit 719b713b2ff83713e1dc7908c91c019953e134d9 Author: James BaicoianuDate: Sun Jul 19 01:41:34 2020 -0700 Print room title or URL in comms join messages diff --git a/media/assets/webui/apps/comms/comms.js b/media/assets/webui/apps/comms/comms.js
--- a/media/assets/webui/apps/comms/comms.js
+++ b/media/assets/webui/apps/comms/comms.js
@@ -167,7 +167,7 @@ elation.elements.define('janus-comms-chat', class extends elation.elements.base
timestamp: new Date().getTime(),
type: 'join',
userId: data.id,
- message: 'has joined the room'
+ message: 'has joined ' + (data.room.title || data.room.url),
});
this.scrollToBottom();
}
-----END OF PAGE-----