fix(core): update

This commit is contained in:
2022-07-30 17:32:58 +02:00
parent 21e92bf0c1
commit 69e3a71354
2 changed files with 10 additions and 1 deletions

View File

@@ -209,6 +209,15 @@ JNj2Dr5H0XoLFFnvuvzcRbhlJ9J67JzR+7g=
response.on('end', () => {
res.end();
});
response.on('error', () => {
res.end();
});
response.on('close', () => {
res.end();
});
response.on('timeout', () => {
res.end();
});
}
);