nit: remove connection check from Controller

This commit is contained in:
rjindael 2023-07-31 02:54:11 -07:00
parent 2eea14d000
commit 1910fb13b8
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
1 changed files with 0 additions and 8 deletions

View File

@ -41,14 +41,6 @@ namespace Kiseki.Launcher
public async void Start()
{
PageHeadingChange("Connecting to Kiseki...");
// This is kind of useless, but whatever
int response = await Web.CheckHealth();
if (response != Web.RESPONSE_SUCCESS)
{
ErrorShow($"Failed to connect to {Constants.ProjectName}.", "Please check your internet connection.");
return;
}
bool marquee = true;
await foreach (int progressValue in StreamBackgroundOperationProgressAsync())