We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373bf9c commit 0126f09Copy full SHA for 0126f09
SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs
@@ -213,8 +213,9 @@ void IServerSource.UpdateInfoFor(ServerStatusData statusData)
213
{
214
UpdateInfoForCore(statusData, async cancel =>
215
216
- var statusAddr = UriHelper.GetServerInfoAddress(statusData.Address);
217
- return await _http.GetFromJsonAsync<ServerInfo>(statusAddr, cancel);
+ var uriBuilder = new UriBuilder(UriHelper.GetServerInfoAddress(statusData.Address));
+ uriBuilder.Query = "?can_skip_build=1";
218
+ return await _http.GetFromJsonAsync<ServerInfo>(uriBuilder.ToString(), cancel);
219
});
220
}
221
0 commit comments