pmcf 4.30.0 → 4.30.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.
- package/package.json +2 -2
- package/src/host.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "4.30.
|
|
3
|
+
"version": "4.30.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"aggregated-map": "^1.0.4",
|
|
54
54
|
"content-entry-transform": "^1.6.9",
|
|
55
55
|
"ip-utilties": "^3.1.0",
|
|
56
|
-
"npm-pkgbuild": "^20.7.
|
|
56
|
+
"npm-pkgbuild": "^20.7.6",
|
|
57
57
|
"pacc": "^9.3.3",
|
|
58
58
|
"package-directory": "^8.2.0"
|
|
59
59
|
},
|
package/src/host.mjs
CHANGED
|
@@ -370,8 +370,8 @@ export class Host extends ServiceOwner {
|
|
|
370
370
|
set networkInterfaces(networkInterface) {
|
|
371
371
|
this._networkInterfaces.set(networkInterface.name, networkInterface);
|
|
372
372
|
|
|
373
|
-
if (!this.isTemplate) {
|
|
374
|
-
networkInterface.network
|
|
373
|
+
if (!this.isTemplate && networkInterface.network) {
|
|
374
|
+
networkInterface.network.hosts = this;
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
377
|
|