mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #2518 from vector-im/rav/ignore_olm_if_missing
Avoid errors if olm is missing
This commit is contained in:
commit
5e84a6c39e
@ -102,3 +102,12 @@ module.exports = {
|
||||
],
|
||||
devtool: 'source-map'
|
||||
};
|
||||
|
||||
// olm is an optional dependency. Ignore it if it's not installed, to avoid a
|
||||
// scary-looking error.
|
||||
try {
|
||||
require('olm');
|
||||
} catch (e) {
|
||||
console.log("Olm is not installed; not shipping it");
|
||||
delete(module.exports.entry["olm"]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user