fix: Adapts to changes in lib-jitsi-meet. (#2354)

pull/2355/head jitsi-meet_2734
bgrozev 8 years ago committed by virtuacoplenny
parent 090f2f9ccb
commit 43ac039fd6
  1. 2
      modules/util/JitsiMeetLogStorage.js
  2. 4
      react/features/overlay/components/AbstractPageReloadOverlay.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(

@ -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

Loading…
Cancel
Save