Explorar el Código

Revert "Add room name to browser tab title" (#5560)

Because it displays "undefined" in the title.

This reverts commit 86ebfe8dad.
master
bgrozev hace 5 años
padre
commit
171b065db1
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      react/features/conference/components/web/Conference.js

+ 1
- 1
react/features/conference/components/web/Conference.js Ver fichero

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

Loading…
Cancelar
Guardar