Просмотр исходного кода

fix(authentication) language display problem resolved #9385 (#9390)

j8
Calinteodor 3 лет назад
Родитель
Сommit
60188794b5
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 2 добавлений и 1 удалений
  1. 2
    1
      react/features/authentication/components/web/WaitForOwnerDialog.js

+ 2
- 1
react/features/authentication/components/web/WaitForOwnerDialog.js Просмотреть файл

@@ -6,6 +6,7 @@ import type { Dispatch } from 'redux';
6 6
 import { Dialog } from '../../../base/dialog';
7 7
 import { translate, translateToHTML } from '../../../base/i18n';
8 8
 import { connect } from '../../../base/redux';
9
+import { safeDecodeURIComponent } from '../../../base/util';
9 10
 import { cancelWaitForOwner } from '../../actions.web';
10 11
 
11 12
 /**
@@ -130,7 +131,7 @@ function mapStateToProps(state) {
130 131
     const { authRequired } = state['features/base/conference'];
131 132
 
132 133
     return {
133
-        _room: authRequired && authRequired.getName()
134
+        _room: authRequired && safeDecodeURIComponent(authRequired.getName())
134 135
     };
135 136
 }
136 137
 

Загрузка…
Отмена
Сохранить