roster-server 2.1.16 → 2.1.18

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/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -234,10 +234,9 @@ class Roster {
234
234
  this.disableWildcard = options.disableWildcard !== undefined
235
235
  ? parseBooleanFlag(options.disableWildcard, false)
236
236
  : parseBooleanFlag(process.env.ROSTER_DISABLE_WILDCARD, false);
237
- const isBunRuntime = typeof Bun !== 'undefined' || process.release?.name === 'bun';
238
237
  this.combineWildcardCerts = options.combineWildcardCerts !== undefined
239
238
  ? parseBooleanFlag(options.combineWildcardCerts, false)
240
- : parseBooleanFlag(process.env.ROSTER_COMBINE_WILDCARD_CERTS, isBunRuntime);
239
+ : parseBooleanFlag(process.env.ROSTER_COMBINE_WILDCARD_CERTS, false);
241
240
 
242
241
  const port = options.port === undefined ? 443 : options.port;
243
242
  if (port === 80 && !this.local) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roster-server",
3
- "version": "2.1.16",
3
+ "version": "2.1.18",
4
4
  "description": "👾 RosterServer - A domain host router to host multiple HTTPS.",
5
5
  "main": "index.js",
6
6
  "scripts": {