1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix #7696: Servers do not get registered on master server list

Correct the HTTP method used for the heartbeat request.
This commit is contained in:
Ted John
2018-06-16 22:37:23 +01:00
parent ee50895d81
commit 182bc1afe6

View File

@@ -127,7 +127,7 @@ private:
{
Http::Request request;
request.url = GetMasterServerUrl();
request.method = Http::Method::POST;
request.method = Http::Method::PUT;
json_t * body = GetHeartbeatJson();
request.body = json_dumps(body, JSON_COMPACT);