@nxtedition/deepstream.io-client-js 28.1.17 → 28.1.18

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": "28.1.17",
3
+ "version": "28.1.18",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "type": "module",
@@ -10,6 +10,8 @@ import * as utils from '../utils/utils.js'
10
10
  import xuid from 'xuid'
11
11
  import * as timers from '../utils/timers.js'
12
12
 
13
+ function noop() {}
14
+
13
15
  const kEmpty = Symbol('kEmpty')
14
16
 
15
17
  function onUpdate(record, subscription) {
@@ -280,6 +282,8 @@ class RecordHandler {
280
282
  })
281
283
  : null
282
284
 
285
+ signalPromise?.catch(noop)
286
+
283
287
  if (this._patching.size) {
284
288
  const promises = []
285
289