pmcf 1.94.4 → 1.94.5
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 +1 -1
- package/src/host.mjs +1 -1
package/package.json
CHANGED
package/src/host.mjs
CHANGED
|
@@ -263,7 +263,7 @@ export class Host extends Base {
|
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
get distribution() {
|
|
266
|
-
return this.#distribution || this.extends.find(e => e.distribution);
|
|
266
|
+
return this.#distribution || this.extends.find(e => e.distribution)?.distribution;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
get modelName() {
|