mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 18:02:31 +02:00
Fix undefined request from JS
This commit is contained in:
parent
678584538d
commit
a5a109e4f1
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