@nxtedition/deepstream.io-client-js 24.1.19 → 24.1.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/deepstream.io-client-js",
3
- "version": "24.1.19",
3
+ "version": "24.1.20",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "bugs": {
@@ -228,8 +228,8 @@ class Record {
228
228
  }
229
229
 
230
230
  const onAbort = signal
231
- ? (abort) => {
232
- onDone(abort ?? new utils.AbortError())
231
+ ? () => {
232
+ onDone(signal.reason ?? new utils.AbortError())
233
233
  }
234
234
  : null
235
235