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:
parent
30e15efd8d
commit
f2e95317b6
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue