fixparser-plugin-messagestore-kdb 9.0.5 → 9.0.6-b4554d3a

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.
@@ -550,6 +550,10 @@ var require_permessage_deflate = __commonJS({
550
550
  }
551
551
  function inflateOnError(err) {
552
552
  this[kPerMessageDeflate]._inflate = null;
553
+ if (this[kError]) {
554
+ this[kCallback](this[kError]);
555
+ return;
556
+ }
553
557
  err[kStatusCode] = 1007;
554
558
  this[kCallback](err);
555
559
  }
@@ -2739,7 +2743,7 @@ var require_websocket = __commonJS({
2739
2743
  const isIpcUrl = parsedUrl.protocol === "ws+unix:";
2740
2744
  let invalidUrlMessage;
2741
2745
  if (parsedUrl.protocol !== "ws:" && !isSecure && !isIpcUrl) {
2742
- invalidUrlMessage = `The URL's protocol must be one of "ws:", "wss:", "http:", "https", or "ws+unix:"`;
2746
+ invalidUrlMessage = `The URL's protocol must be one of "ws:", "wss:", "http:", "https:", or "ws+unix:"`;
2743
2747
  } else if (isIpcUrl && !parsedUrl.pathname) {
2744
2748
  invalidUrlMessage = "The URL's pathname is empty";
2745
2749
  } else if (parsedUrl.hash) {