fix: some exports to make it work with webpack 2

This commit is contained in:
hristoterezov
2017-06-14 15:13:25 -05:00
committed by Lyubo Marinov
parent 4d329b510f
commit c8c44d62ed
3 changed files with 23 additions and 43 deletions

View File

@@ -21,7 +21,7 @@ export default class JitsiMeetLogStorage {
* <tt>false</tt> otherwise.
*/
isReady() {
return APP.logCollectorStarted && APP.conference;
return Boolean(APP.logCollectorStarted && APP.conference);
}
/**