@hive-p2p/server 1.0.28 → 1.0.29
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/core/topologist.mjs +1 -1
- package/package.json +1 -1
package/core/topologist.mjs
CHANGED
|
@@ -152,7 +152,7 @@ export class Topologist {
|
|
|
152
152
|
const host = isBrowser ? window.location.host : url; // Récupère le host du browser
|
|
153
153
|
|
|
154
154
|
// Build full URL if not already prefixed
|
|
155
|
-
return url.startsWith('ws') ? url : `${protocol}${
|
|
155
|
+
return url.startsWith('ws') ? url : `${protocol}${host}`;
|
|
156
156
|
}
|
|
157
157
|
#connectToPublicNode(publicUrl = 'localhost:8080') {
|
|
158
158
|
let remoteId = null;
|