Add room name to browser tab title

Fixes #5480

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
pull/5510/head
Ruben Kerkhof 5 years ago
parent 8d0202113a
commit 86ebfe8dad
  1. 2
      react/features/conference/components/web/Conference.js

@ -120,7 +120,7 @@ class Conference extends AbstractConference<Props, *> {
* @inheritdoc
*/
componentDidMount() {
document.title = interfaceConfig.APP_NAME;
document.title = `${APP.conference.roomName} | ${interfaceConfig.APP_NAME}`;
this._start();
}

Loading…
Cancel
Save