diff options
author | David Baker <dave@matrix.org> | 2018-10-10 20:08:55 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-10-10 20:08:55 +0100 |
commit | 82534708a35640672c812e7603a84a9f42c8b50c (patch) | |
tree | f8e9a909d9bc075fb40b968fa4c478f42ebf9668 /javascript/olm_suffix.js | |
parent | 2cbba061c3f0ce4d7f86c3dc2b7f7fd5f4f45ff7 (diff) | |
parent | 3cfcf1615dfe434e1aa10d5c904d537b159e1566 (diff) |
Merge remote-tracking branch 'origin/master' into dbkr/ci2
Diffstat (limited to 'javascript/olm_suffix.js')
-rw-r--r-- | javascript/olm_suffix.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/javascript/olm_suffix.js b/javascript/olm_suffix.js index 7f19953..3e2f664 100644 --- a/javascript/olm_suffix.js +++ b/javascript/olm_suffix.js @@ -24,7 +24,9 @@ if (typeof(window) !== 'undefined') { window["Olm"] = olm_exports; } -// Emscripten sets the module exports to be its module -// with wrapped c functions. Clobber it with our higher -// level wrapper class. -module.exports = olm_exports; +if (typeof module === 'object') { + // Emscripten sets the module exports to be its module + // with wrapped c functions. Clobber it with our higher + // level wrapper class. + module.exports = olm_exports; +} |