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.
This commit is contained in:
bluepilledgreat 2024-08-23 18:37:01 +01:00
parent 56016e9723
commit 7123aa7951

View File

@ -58,9 +58,6 @@
// returns null for success
if (!String.IsNullOrEmpty(BaseUrl))
return null;
CancellationTokenSource tokenSource = new CancellationTokenSource();
CancellationToken token = tokenSource.Token;