Browse Source

Fix typo

j8
Lyubo Marinov 8 years ago
parent
commit
d2b2f98941
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      react/features/base/lib-jitsi-meet/middleware.js

+ 2
- 2
react/features/base/lib-jitsi-meet/middleware.js View File

52
     // disposed of first.
52
     // disposed of first.
53
     // TODO Currently, disposeLib actually does not dispose of lib-jitsi-meet
53
     // TODO Currently, disposeLib actually does not dispose of lib-jitsi-meet
54
     // because lib-jitsi-meet does not implement such functionality.
54
     // because lib-jitsi-meet does not implement such functionality.
55
-    const disposeLIbPromise
55
+    const disposeLibPromise
56
         = initialized ? dispatch(disposeLib()) : Promise.resolve();
56
         = initialized ? dispatch(disposeLib()) : Promise.resolve();
57
 
57
 
58
     // Let the new config into the Redux store (because initLib will read it
58
     // Let the new config into the Redux store (because initLib will read it
59
     // from there).
59
     // from there).
60
     const nextState = next(action);
60
     const nextState = next(action);
61
 
61
 
62
-    disposeLIbPromise.then(dispatch(initLib()));
62
+    disposeLibPromise.then(dispatch(initLib()));
63
 
63
 
64
     return nextState;
64
     return nextState;
65
 }
65
 }

Loading…
Cancel
Save