Use clientsettingscdn instead of clientsettings

This commit is contained in:
pizzaboxer 2023-04-23 15:54:46 +01:00
parent 4630b3c9bd
commit 64db0527b3
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -94,7 +94,7 @@ namespace Bloxstrap.Helpers
{
App.Logger.WriteLine($"[DeployManager::GetLastDeploy] Getting deploy info for channel {Channel} (timestamp={timestamp})");
HttpResponseMessage deployInfoResponse = await App.HttpClient.GetAsync($"https://clientsettings.roblox.com/v2/client-version/WindowsPlayer/channel/{Channel}").ConfigureAwait(false);
HttpResponseMessage deployInfoResponse = await App.HttpClient.GetAsync($"https://clientsettingscdn.roblox.com/v2/client-version/WindowsPlayer/channel/{Channel}").ConfigureAwait(false);
string rawResponse = await deployInfoResponse.Content.ReadAsStringAsync();