@dxos/echo-pipeline 0.3.10-next.ef70620 → 0.3.11-main.bd26370
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/lib/browser/{chunk-6XOL2DVG.mjs → chunk-W3SSYW3X.mjs} +4 -1
- package/dist/lib/browser/{chunk-6XOL2DVG.mjs.map → chunk-W3SSYW3X.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +1 -1
- package/dist/lib/node/{chunk-2RIO52RK.cjs → chunk-KTFCZMAY.cjs} +7 -4
- package/dist/lib/node/{chunk-2RIO52RK.cjs.map → chunk-KTFCZMAY.cjs.map} +2 -2
- package/dist/lib/node/index.cjs +26 -26
- package/dist/lib/node/index.cjs.map +1 -1
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +15 -15
- package/package.json +33 -33
- package/src/automerge/automerge-host.test.ts +51 -48
- package/src/automerge/automerge-host.ts +10 -0
|
@@ -2935,6 +2935,9 @@ var MeshNetworkAdapter = class extends NetworkAdapter {
|
|
|
2935
2935
|
peerId: this.peerId
|
|
2936
2936
|
}, {
|
|
2937
2937
|
onStartReplication: async (info) => {
|
|
2938
|
+
if (this._extensions.has(info.id)) {
|
|
2939
|
+
return;
|
|
2940
|
+
}
|
|
2938
2941
|
peerInfo = info;
|
|
2939
2942
|
this._extensions.set(info.id, extension);
|
|
2940
2943
|
this.emit("peer-candidate", {
|
|
@@ -3037,4 +3040,4 @@ export {
|
|
|
3037
3040
|
SpaceManager,
|
|
3038
3041
|
AutomergeHost
|
|
3039
3042
|
};
|
|
3040
|
-
//# sourceMappingURL=chunk-
|
|
3043
|
+
//# sourceMappingURL=chunk-W3SSYW3X.mjs.map
|