@nymphjs/client 1.0.0-beta.2 → 1.0.0-beta.4

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/lib/Entity.js CHANGED
@@ -357,7 +357,7 @@ class Entity {
357
357
  }
358
358
  const mdate = this.mdate;
359
359
  await this.$nymph.patchEntity(this);
360
- return mdate === this.mdate;
360
+ return mdate !== this.mdate;
361
361
  }
362
362
  $ready() {
363
363
  if (!this.$isASleepingReference) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nymphjs/client",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.4",
4
4
  "description": "NymphJS - Client",
5
5
  "browser": "dist/index.js",
6
6
  "main": "lib/index.js",
@@ -47,5 +47,5 @@
47
47
  "webpack": "^5.75.0",
48
48
  "webpack-cli": "^4.10.0"
49
49
  },
50
- "gitHead": "431d1aaa620a4f1d4ef0227aaad717665dfd6a6d"
50
+ "gitHead": "b1a93ef56e12c01c9d9c6591ef552b5b003117a4"
51
51
  }
package/src/Entity.ts CHANGED
@@ -524,7 +524,7 @@ export default class Entity<T extends EntityData = EntityData>
524
524
  const mdate = this.mdate;
525
525
 
526
526
  await this.$nymph.patchEntity(this);
527
- return mdate === this.mdate;
527
+ return mdate !== this.mdate;
528
528
  }
529
529
 
530
530
  public $ready() {