Fix formatting

I LOVE VISUAL STUDIO
This commit is contained in:
pizzaboxer 2023-04-22 21:32:26 +01:00
parent b89bb0a140
commit 4630b3c9bd
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -507,11 +507,11 @@ namespace Bloxstrap.Integrations
if (App.Settings.Prop.Channel.ToLower() == DeployManager.DefaultChannel.ToLower())
{
App.Logger.WriteLine($"[App::OnStartup] Channel is already {DeployManager.DefaultChannel}");
App.Logger.WriteLine($"[App::OnStartup] Channel is already {DeployManager.DefaultChannel}");
return;
}
}
ClientVersion versionInfo = await App.DeployManager.GetLastDeploy().ConfigureAwait(false);
ClientVersion versionInfo = await App.DeployManager.GetLastDeploy().ConfigureAwait(false);
string manifest = await App.HttpClient.GetStringAsync($"{App.DeployManager.BaseUrl}/{versionInfo.VersionGuid}-rbxManifest.txt");
if (!manifest.Contains("RobloxPlayerBeta.dll"))
@ -530,5 +530,5 @@ namespace Bloxstrap.Integrations
App.DeployManager.Channel = App.Settings.Prop.Channel = DeployManager.DefaultChannel;
}
}
}
}