parent
cafefecea5
commit
60188794b5
|
@ -6,6 +6,7 @@ import type { Dispatch } from 'redux';
|
||||||
import { Dialog } from '../../../base/dialog';
|
import { Dialog } from '../../../base/dialog';
|
||||||
import { translate, translateToHTML } from '../../../base/i18n';
|
import { translate, translateToHTML } from '../../../base/i18n';
|
||||||
import { connect } from '../../../base/redux';
|
import { connect } from '../../../base/redux';
|
||||||
|
import { safeDecodeURIComponent } from '../../../base/util';
|
||||||
import { cancelWaitForOwner } from '../../actions.web';
|
import { cancelWaitForOwner } from '../../actions.web';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -130,7 +131,7 @@ function mapStateToProps(state) {
|
||||||
const { authRequired } = state['features/base/conference'];
|
const { authRequired } = state['features/base/conference'];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
_room: authRequired && authRequired.getName()
|
_room: authRequired && safeDecodeURIComponent(authRequired.getName())
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue