pmcf 1.21.1 → 1.21.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/model.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.21.1",
3
+ "version": "1.21.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/model.mjs CHANGED
@@ -865,7 +865,7 @@ export class Service extends Base {
865
865
 
866
866
  Object.assign(this, data);
867
867
 
868
- this.owner = owner;
868
+ // this.owner = owner;
869
869
 
870
870
  owner.addService(this);
871
871
  }
@@ -914,7 +914,7 @@ export class Service extends Base {
914
914
  }
915
915
 
916
916
  get priority() {
917
- return /*this.#priority || */ this.owner.priority || 99;
917
+ return this.#priority || this.owner.priority || 99;
918
918
  }
919
919
 
920
920
  get weight() {