mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 20:26:55 +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.open(options.method, options.uri, true);
|
||||||
httpRequest.send(options.body);
|
httpRequest.send(options.body || null);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue