From 43ac039fd61902a094adc59d1de3f50ffd81d3ce Mon Sep 17 00:00:00 2001 From: bgrozev Date: Wed, 3 Jan 2018 18:07:39 -0600 Subject: [PATCH] fix: Adapts to changes in lib-jitsi-meet. (#2354) --- modules/util/JitsiMeetLogStorage.js | 2 +- .../features/overlay/components/AbstractPageReloadOverlay.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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