mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 14:22:23 +02:00
Fix undefined request from JS
This commit is contained in:
parent
d24cea2f07
commit
c4e90c24eb
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