瀏覽代碼

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

j8
bgrozev 7 年之前
父節點
當前提交
43ac039fd6

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

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

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

@@ -162,8 +162,8 @@ export default class AbstractPageReloadOverlay extends Component<*, *> {
162 162
         // sent to the backed.
163 163
         // FIXME: We should dispatch action for this.
164 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 168
                         name: 'page.reload',
169 169
                         label: this.props.reason

Loading…
取消
儲存