@holochain/hc-spin 0.300.2-dev.1 → 0.300.2-dev.2
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/dist/cli.js +0 -0
- package/dist/main/index.js +1 -1
- package/package.json +1 -1
- package/src/main/index.ts +1 -1
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/main/index.js
CHANGED
|
@@ -12025,7 +12025,7 @@ electron.app.whenReady().then(async () => {
|
|
|
12025
12025
|
const zomeCallSigner = await rustUtils.ZomeCallSigner.connect(lairUrls[i], "pass");
|
|
12026
12026
|
const appPort = portsInfo[i].app_ports[0];
|
|
12027
12027
|
const appWs = await AppWebsocket.connect({
|
|
12028
|
-
url: new URL(`ws://
|
|
12028
|
+
url: new URL(`ws://localhost:${appPort}`),
|
|
12029
12029
|
wsClientOptions: {
|
|
12030
12030
|
origin: "hc-spin"
|
|
12031
12031
|
}
|
package/package.json
CHANGED
package/src/main/index.ts
CHANGED
|
@@ -331,7 +331,7 @@ app.whenReady().then(async () => {
|
|
|
331
331
|
|
|
332
332
|
const appPort = portsInfo[i].app_ports[0];
|
|
333
333
|
const appWs = await AppWebsocket.connect({
|
|
334
|
-
url: new URL(`ws://
|
|
334
|
+
url: new URL(`ws://localhost:${appPort}`),
|
|
335
335
|
wsClientOptions: {
|
|
336
336
|
origin: 'hc-spin',
|
|
337
337
|
},
|