core-3nweb-client-lib 0.20.2 → 0.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ipc-via-protobuf/connector-services-side.js +1 -1
- package/build/lib-client/cryptor/cryptor-in-worker.js +1 -1
- package/build/lib-client/cryptor/cryptor-wasm.js +1 -1
- package/build/lib-client/cryptor/cryptor.wasm +0 -0
- package/build/lib-client/cryptor/in-proc-wasm.js +10 -13
- package/package.json +1 -1
|
@@ -113,7 +113,7 @@ class ServicesSideImpl {
|
|
|
113
113
|
this.exposedObjs.drop(path[0]);
|
|
114
114
|
}
|
|
115
115
|
else {
|
|
116
|
-
throw connector_1.makeIPCException({ invalidPath: true });
|
|
116
|
+
throw connector_1.makeIPCException({ invalidPath: true, path });
|
|
117
117
|
}
|
|
118
118
|
}
|
|
119
119
|
processListObj(fnCallNum, path) {
|
|
@@ -29,7 +29,7 @@ const jsWorkerFName = 'worker-js.js';
|
|
|
29
29
|
const wasmWorkerFName = 'worker-wasm.js';
|
|
30
30
|
function workerScriptFor(impl) {
|
|
31
31
|
// There is a bug with electrons 12, 13, that doesn't let
|
|
32
|
-
// worker_thread read
|
|
32
|
+
// worker_thread read files from asar pack, even though main thread
|
|
33
33
|
// makes call from here.
|
|
34
34
|
// Therefore, in case this runs from asar pack, we should switch to
|
|
35
35
|
// unpacked in path that is given to worker thread.
|