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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user