pmcf 2.71.8 → 2.71.9

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/service.mjs +6 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.71.8",
3
+ "version": "2.71.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/service.mjs CHANGED
@@ -167,16 +167,15 @@ export class Service extends Base {
167
167
  } else {
168
168
  if (e.family === na.family) {
169
169
  result.push(new Endpoint(this, na, options));
170
- } else {
171
- if (!domainNames.has(this.domainName)) {
172
- domainNames.add(this.domainName);
173
- result.push(
174
- new DomainNameEndpoint(this, this.domainName, options)
175
- );
176
- }
177
170
  }
178
171
  }
179
172
  }
173
+
174
+ if (!domainNames.has(this.domainName)) {
175
+ domainNames.add(this.domainName);
176
+ result.push(new DomainNameEndpoint(this, this.domainName, options));
177
+ }
178
+
180
179
  break;
181
180
  }
182
181
  }