Browse Source

Add room name to browser tab title

Fixes #5480

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
master
Ruben Kerkhof 5 years ago
parent
commit
86ebfe8dad
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/conference/components/web/Conference.js

+ 1
- 1
react/features/conference/components/web/Conference.js View File

120
      * @inheritdoc
120
      * @inheritdoc
121
      */
121
      */
122
     componentDidMount() {
122
     componentDidMount() {
123
-        document.title = interfaceConfig.APP_NAME;
123
+        document.title = `${APP.conference.roomName} | ${interfaceConfig.APP_NAME}`;
124
         this._start();
124
         this._start();
125
     }
125
     }
126
 
126
 

Loading…
Cancel
Save