浏览代码

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

j8
bgrozev 7 年前
父节点
当前提交
43ac039fd6

+ 1
- 1
modules/util/JitsiMeetLogStorage.js 查看文件

58
         // on the way that could be uninitialized if the storeLogs
58
         // on the way that could be uninitialized if the storeLogs
59
         // attempt would be made very early (which is unlikely)
59
         // attempt would be made very early (which is unlikely)
60
         try {
60
         try {
61
-            APP.conference.room.sendApplicationLog(logMessage);
61
+            APP.conference._room.sendApplicationLog(logMessage);
62
         } catch (error) {
62
         } catch (error) {
63
             // NOTE console is intentional here
63
             // NOTE console is intentional here
64
             console.error(
64
             console.error(

+ 2
- 2
react/features/overlay/components/AbstractPageReloadOverlay.js 查看文件

162
         // sent to the backed.
162
         // sent to the backed.
163
         // FIXME: We should dispatch action for this.
163
         // FIXME: We should dispatch action for this.
164
         if (typeof APP !== 'undefined') {
164
         if (typeof APP !== 'undefined') {
165
-            if (APP.conference && APP.conference.room) {
166
-                APP.conference.room.sendApplicationLog(JSON.stringify(
165
+            if (APP.conference && APP.conference._room) {
166
+                APP.conference._room.sendApplicationLog(JSON.stringify(
167
                     {
167
                     {
168
                         name: 'page.reload',
168
                         name: 'page.reload',
169
                         label: this.props.reason
169
                         label: this.props.reason

正在加载...
取消
保存