ソースを参照

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

master
Calinteodor 4年前
コミット
60188794b5
コミッターのメールアドレスに関連付けられたアカウントが存在しません

+ 2
- 1
react/features/authentication/components/web/WaitForOwnerDialog.js ファイルの表示

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

読み込み中…
キャンセル
保存