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