roster-server 2.1.23 → 2.1.24
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
CHANGED
|
@@ -125,11 +125,6 @@ module.exports.create = function create(config = {}) {
|
|
|
125
125
|
const presentedByAltname = new Map();
|
|
126
126
|
|
|
127
127
|
async function setChallenge(opts) {
|
|
128
|
-
const isInteractive = Boolean(process.stdin && process.stdin.isTTY);
|
|
129
|
-
if (isInteractive && !autoContinue && !verifyDnsBeforeContinue) {
|
|
130
|
-
return toPromise(challenger.set, challenger)(opts);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
128
|
const ch = opts?.challenge || {};
|
|
134
129
|
log.info('');
|
|
135
130
|
log.info("[ACME dns-01 '" + (ch.altname || opts?.altname || 'unknown') + "' CHALLENGE]");
|