diff --git a/modules/util/JitsiMeetLogStorage.js b/modules/util/JitsiMeetLogStorage.js index e544917ba..8ff853467 100644 --- a/modules/util/JitsiMeetLogStorage.js +++ b/modules/util/JitsiMeetLogStorage.js @@ -58,7 +58,7 @@ export default class JitsiMeetLogStorage { // on the way that could be uninitialized if the storeLogs // attempt would be made very early (which is unlikely) try { - APP.conference.room.sendApplicationLog(logMessage); + APP.conference._room.sendApplicationLog(logMessage); } catch (error) { // NOTE console is intentional here console.error( diff --git a/react/features/overlay/components/AbstractPageReloadOverlay.js b/react/features/overlay/components/AbstractPageReloadOverlay.js index f5c952608..c395cd879 100644 --- a/react/features/overlay/components/AbstractPageReloadOverlay.js +++ b/react/features/overlay/components/AbstractPageReloadOverlay.js @@ -162,8 +162,8 @@ export default class AbstractPageReloadOverlay extends Component<*, *> { // sent to the backed. // FIXME: We should dispatch action for this. if (typeof APP !== 'undefined') { - if (APP.conference && APP.conference.room) { - APP.conference.room.sendApplicationLog(JSON.stringify( + if (APP.conference && APP.conference._room) { + APP.conference._room.sendApplicationLog(JSON.stringify( { name: 'page.reload', label: this.props.reason