mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
Merge pull request #12537 from zfox23/fixJsRequest
Fix undefined request from JS
This commit is contained in:
commit
7ebe3df2b1
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ module.exports = {
|
|||
}
|
||||
}
|
||||
httpRequest.open(options.method, options.uri, true);
|
||||
httpRequest.send(options.body);
|
||||
httpRequest.send(options.body || null);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue