egos-transfer 0.2.2 → 0.2.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/dist/index.js CHANGED
@@ -108,7 +108,6 @@ class PeerTransfer {
108
108
  return;
109
109
  }
110
110
  if (err.message === constant_1.CONNECTION_LIMIT_EXCEED) {
111
- this.stop();
112
111
  this.onConnectLimit();
113
112
  return done(null);
114
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egos-transfer",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "1234",
5
5
  "homepage": "https://github.com/superbogy/peer-transfer#readme",
6
6
  "bugs": {
package/src/index.ts CHANGED
@@ -150,7 +150,6 @@ export abstract class PeerTransfer {
150
150
  return;
151
151
  }
152
152
  if (err.message === CONNECTION_LIMIT_EXCEED) {
153
- this.stop();
154
153
  this.onConnectLimit();
155
154
  return done(null);
156
155
  }