repo: janusweb
action: commit
revision: 
path_from: 
revision_from: 719b713b2ff83713e1dc7908c91c019953e134d9:
path_to: 
revision_to: 
git.thebackupbox.net
janusweb
git clone git://git.thebackupbox.net/janusweb
commit 719b713b2ff83713e1dc7908c91c019953e134d9
Author: James Baicoianu 
Date:   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
index bc99cc5ef009f0f643a1929b5293c88af21a609f..
index ..de2ae860b5a83d3cc207e656e73864fc8139c477 100644
--- 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-----