Skip to content

Commit 4f11996

Browse files
authored
Fix callRemote (regression from 466c162)
1 parent 300a6a7 commit 4f11996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Server/mods/deathmatch/logic/CRemoteCalls.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ CRemoteCall::CRemoteCall(const char* szServerHost, const char* szResourceName, c
162162
m_options.requestHeaders["Content-Type"] = "application/json";
163163
m_bIsFetch = false;
164164

165-
m_strURL = SString("https://%s/%s/call/%s", szServerHost, szResourceName, szFunctionName);
165+
m_strURL = SString("http://%s/%s/call/%s", szServerHost, szResourceName, szFunctionName);
166166
m_strQueueName = strQueueName;
167167
m_options.uiConnectionAttempts = uiConnectionAttempts;
168168
m_options.uiConnectTimeoutMs = uiConnectTimeoutMs;

0 commit comments

Comments
 (0)