Cleaned up utilWorker spawning

pull/104/head
Beaudan 6 years ago
parent 6113f13d3a
commit bb3ca610ff

@ -269,8 +269,9 @@ window.LokiAPI = new LokiServer({
window.mnemonic = require('./libloki/mnemonic');
const { WorkerInterface } = require('./js/modules/util_worker_interface');
const worker = new WorkerInterface(path.join(app.getAppPath(), 'js', 'util_worker.js'));
window.callWorker = (fnName, ...args) => worker.callWorker(fnName, ...args);
const utilWorkerPath = path.join(app.getAppPath(), 'js', 'util_worker.js');
const utilWorker = new WorkerInterface(utilWorkerPath);
window.callWorker = (fnName, ...args) => utilWorker.callWorker(fnName, ...args);
// Linux seems to periodically let the event loop stop, so this is a global workaround
setInterval(() => {

Loading…
Cancel
Save