only load olm once
This commit is contained in:
parent
0c3ea90ab4
commit
9fad5b3b29
1 changed files with 2 additions and 1 deletions
|
@ -105,6 +105,7 @@ export async function main(container, paths) {
|
|||
const sessionInfoStorage = new SessionInfoStorage("brawl_sessions_v1");
|
||||
const storageFactory = new StorageFactory();
|
||||
|
||||
const olmPromise = loadOlm(paths.olm);
|
||||
// if wasm is not supported, we'll want
|
||||
// to run some olm operations in a worker (mainly for IE11)
|
||||
let workerPromise;
|
||||
|
@ -121,7 +122,7 @@ export async function main(container, paths) {
|
|||
sessionInfoStorage,
|
||||
request,
|
||||
clock,
|
||||
olmPromise: loadOlm(paths.olm),
|
||||
olmPromise,
|
||||
workerPromise,
|
||||
});
|
||||
},
|
||||
|
|
Reference in a new issue