mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-11-08 21:24:53 -05:00
Fixed server exception (#4696)
This commit is contained in:
@@ -721,7 +721,7 @@ module.exports.CreateWebRelay = function (parent, db, args, domain) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If there is data, send it
|
// If there is data, send it
|
||||||
if (data != null) { obj.res.write(data, 'binary'); }
|
if (data != null) { try { obj.res.write(data, 'binary'); } catch (ex) { } }
|
||||||
|
|
||||||
// If we are done, close the response
|
// If we are done, close the response
|
||||||
if (done == true) {
|
if (done == true) {
|
||||||
|
|||||||
Reference in New Issue
Block a user