mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 19:52:26 +02:00
Merge pull request #12542 from zfox23/RC65_fixJsRequest
RC65: Fix undefined request from JS
This commit is contained in:
commit
be30d8d4ec
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