Browse Source

fix(dial-in-info): Qiuck fix of JitsiMeetJS undefined error.

master
hristoterezov 7 years ago
parent
commit
add89e2488
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      react/features/base/i18n/middleware.js

+ 4
- 2
react/features/base/i18n/middleware.js View File

1
 /* @flow */
1
 /* @flow */
2
-
3
-import { SET_CONFIG } from '../config';
2
+// FIXME: Using '../config/actionTypes' instead of '../config' is a quick fix
3
+// for the dial-in info page. Importing '../config' results in JitsiMeetJS
4
+// undefined error (/base/config imports /app which import /lib-jitsi-meet/).
5
+import { SET_CONFIG } from '../config/actionTypes';
4
 import { MiddlewareRegistry } from '../redux';
6
 import { MiddlewareRegistry } from '../redux';
5
 
7
 
6
 declare var APP: Object;
8
 declare var APP: Object;

Loading…
Cancel
Save