1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 11:01:52 +00:00

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 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')) { 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); res.set(headers);