Fixed bug when settings custom http headers.

This commit is contained in:
Ylian Saint-Hilaire 2022-03-05 10:51:41 -08:00
parent 30e15efd8d
commit f2e95317b6

View File

@ -5800,7 +5800,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
// If this domain has configured headers, add them. If a header is set to null, remove it.
if ((domain != null) && (domain.httpheaders != null) && (typeof domain.httpheaders == 'object')) {
for (var i in domain.httpheaders) { if (domain.httpheaders === null) { delete headers[i]; } else { headers[i] = domain.httpheaders[i]; } }
for (var i in domain.httpheaders) { if (domain.httpheaders[i] === null) { delete headers[i]; } else { headers[i] = domain.httpheaders[i]; } }
}
res.set(headers);