From 60188794b505b913f81d9ec4e781a27021ea42c1 Mon Sep 17 00:00:00 2001 From: Calinteodor Date: Mon, 14 Jun 2021 16:03:27 +0300 Subject: [PATCH] fix(authentication) language display problem resolved #9385 (#9390) --- .../authentication/components/web/WaitForOwnerDialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react/features/authentication/components/web/WaitForOwnerDialog.js b/react/features/authentication/components/web/WaitForOwnerDialog.js index 5294347c0..1549b284a 100644 --- a/react/features/authentication/components/web/WaitForOwnerDialog.js +++ b/react/features/authentication/components/web/WaitForOwnerDialog.js @@ -6,6 +6,7 @@ import type { Dispatch } from 'redux'; import { Dialog } from '../../../base/dialog'; import { translate, translateToHTML } from '../../../base/i18n'; import { connect } from '../../../base/redux'; +import { safeDecodeURIComponent } from '../../../base/util'; import { cancelWaitForOwner } from '../../actions.web'; /** @@ -130,7 +131,7 @@ function mapStateToProps(state) { const { authRequired } = state['features/base/conference']; return { - _room: authRequired && authRequired.getName() + _room: authRequired && safeDecodeURIComponent(authRequired.getName()) }; }