diff --git a/Steam Desktop Authenticator/MainForm.cs b/Steam Desktop Authenticator/MainForm.cs index 32e3dcea..7e3f0390 100644 --- a/Steam Desktop Authenticator/MainForm.cs +++ b/Steam Desktop Authenticator/MainForm.cs @@ -424,7 +424,7 @@ private async void timerTradesPopup_Tick(object sender, EventArgs e) try { Confirmation[] tmp = await currentAccount.FetchConfirmationsAsync(); - foreach(var conf in tmp) + foreach (var conf in tmp) { if (conf.ConfType == Confirmation.ConfirmationType.MarketSellTransaction && manifest.AutoConfirmMarketTransactions) acc.AcceptConfirmation(conf); @@ -440,6 +440,9 @@ private async void timerTradesPopup_Tick(object sender, EventArgs e) await currentAccount.RefreshSessionAsync(); //Don't save it to the HDD, of course. We'd need their encryption passkey again. lblStatus.Text = ""; } + catch (WebException) + { + } } lblStatus.Text = "";