summaryrefslogtreecommitdiffstats
path: root/core/io/http_client.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-08-26 10:51:17 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-08-26 10:51:17 +0200
commitb4f268fae891be7afb6ab04eb9405d48e3c20782 (patch)
treee1530ec365311a550a5f678233cc940fa01dd99f /core/io/http_client.cpp
parente63e8453da2ef7d90f693244d8a3041466dc2c63 (diff)
parent3d575801cef4239b120e8ca974ad478a71517fdf (diff)
downloadredot-engine-b4f268fae891be7afb6ab04eb9405d48e3c20782.tar.gz
Merge pull request #91018 from Daylily-Zeleen/daylily-zeleen/optionally_postinitialization_for_extension_owner
Allow ClassDB to create a Object without postinitialization for GDExtension.
Diffstat (limited to 'core/io/http_client.cpp')
-rw-r--r--core/io/http_client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp
index 833fd1adc3..fc91341bed 100644
--- a/core/io/http_client.cpp
+++ b/core/io/http_client.cpp
@@ -42,9 +42,9 @@ const char *HTTPClient::_methods[METHOD_MAX] = {
"PATCH"
};
-HTTPClient *HTTPClient::create() {
+HTTPClient *HTTPClient::create(bool p_notify_postinitialize) {
if (_create) {
- return _create();
+ return _create(p_notify_postinitialize);
}
return nullptr;
}