@nxtedition/deepstream.io-client-js 23.4.42 → 23.4.43

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": "23.4.42",
3
+ "version": "23.4.43",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "bugs": {
@@ -315,8 +315,9 @@ class Record {
315
315
  }
316
316
 
317
317
  if (
318
- (version.charAt(0) === 'I' && this._version !== version) ||
319
- utils.compareRev(version, this._version) > 0
318
+ version.charAt(0) === 'I'
319
+ ? this._version !== version
320
+ : utils.compareRev(version, this._version) > 0
320
321
  ) {
321
322
  this._data = jsonPath.set(this._data, null, jsonPath.parse(data), true)
322
323
  this._version = version