From 7123aa79517efc05a54e83ad0ad6bca4f5a197bd Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:37:01 +0100 Subject: [PATCH] remove pointless baseurl check InitializeConnectivity is an async function. if it is somehow ran twice and the previous task hasn't completed, the connectivity check will still run. --- Bloxstrap/RobloxDeployment.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Bloxstrap/RobloxDeployment.cs b/Bloxstrap/RobloxDeployment.cs index fd33de7..38d12f2 100644 --- a/Bloxstrap/RobloxDeployment.cs +++ b/Bloxstrap/RobloxDeployment.cs @@ -58,9 +58,6 @@ // returns null for success - if (!String.IsNullOrEmpty(BaseUrl)) - return null; - CancellationTokenSource tokenSource = new CancellationTokenSource(); CancellationToken token = tokenSource.Token;