From ced9cde41b2781ef3f89ffafd4417405eb473f8a Mon Sep 17 00:00:00 2001 From: Bradley Matusiak Date: Sun, 15 May 2022 21:07:35 -0400 Subject: [PATCH] websocket ../index to ./index (#1235) * Update sea.js * Update auth.js * Update sea.js * Update auth.js * Update rs3.js * added test for login via {pub} * gh page build * fix index path in websocket plugin --- gun.js | 2 +- src/websocket.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gun.js b/gun.js index 705dcf4d..c3d719e2 100644 --- a/gun.js +++ b/gun.js @@ -1667,7 +1667,7 @@ })(USE, './mesh'); ;USE(function(module){ - var Gun = USE('../index'); + var Gun = USE('./index'); Gun.Mesh = USE('./mesh'); // TODO: resync upon reconnect online/offline diff --git a/src/websocket.js b/src/websocket.js index 17b57e5b..be2263d5 100644 --- a/src/websocket.js +++ b/src/websocket.js @@ -1,5 +1,5 @@ -var Gun = require('../index'); +var Gun = require('./index'); Gun.Mesh = require('./mesh'); // TODO: resync upon reconnect online/offline