vim-web 0.3.42-dev.1 → 0.3.42-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/vim-web.js CHANGED
@@ -59786,12 +59786,11 @@ class SocketClient {
59786
59786
  } else {
59787
59787
  this._clearSocket();
59788
59788
  this._connectPromise.reject("Connection to a different server");
59789
- this._connectPromise = new ControllablePromise();
59790
59789
  }
59791
- } else if (this._connectingUrl !== url) {
59792
- this._connectPromise = new ControllablePromise();
59793
- this._connectingUrl = url;
59794
59790
  }
59791
+ this._connectPromise = new ControllablePromise();
59792
+ this._connectingUrl = settings2.url;
59793
+ this._retries = settings2.retries;
59795
59794
  this.updateState({ status: "connecting" });
59796
59795
  try {
59797
59796
  this._socket = new WebSocket(url);