mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 14:05:27 +02:00
Fix linux specific script engine crash
This commit is contained in:
parent
4d2e7eaaba
commit
5be1cfcb36
1 changed files with 2 additions and 2 deletions
|
@ -40,10 +40,10 @@ module.exports = {
|
|||
response = { statusCode: httpRequest.status };
|
||||
}
|
||||
|
||||
callback(error, response, optionalCallbackParameter);
|
||||
|
||||
// Break circular reference to httpRequest so the engine can garbage collect it.
|
||||
httpRequest.onreadystatechange = null;
|
||||
|
||||
callback(error, response, optionalCallbackParameter);
|
||||
}
|
||||
};
|
||||
if (typeof options === 'string') {
|
||||
|
|
Loading…
Reference in a new issue