bugfixes for defaults

This commit is contained in:
AJ ONeal 2019-11-19 02:32:48 -07:00
parent e3153c5c8b
commit 1ce3964aab
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ function mergeDefaults(MCONF, gconf) {
console.info('[default] serverKeyType: ' + MCONF.serverKeyType);
}
if (false !== MCONF.subscriberEmail) {
if (!MCONF.subscriberEmail && false !== MCONF.subscriberEmail) {
MCONF.subscriberEmail =
gconf.subscriberEmail || gconf.maintainerEmail || undefined;
MCONF.agreeToTerms = gconf.agreeToTerms || undefined;