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

This commit is contained in:
Calinteodor 2021-06-14 16:03:27 +03:00 committed by GitHub
parent cafefecea5
commit 60188794b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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())
};
}