Handle TryAnotherCM as a reconnection attempt

pull/233/head
Ryan Kistner 4 years ago
parent ad72f53cd7
commit a9e400949d

@ -611,6 +611,13 @@ namespace DepotDownloader
return;
}
else if ( loggedOn.Result == EResult.TryAnotherCM )
{
Console.Write( "Retrying Steam3 connection (TryAnotherCM)..." );
Connect();
return;
}
else if ( loggedOn.Result == EResult.ServiceUnavailable )
{
Console.WriteLine( "Unable to login to Steam3: {0}", loggedOn.Result );

Loading…
Cancel
Save