fix #36 trade action behavior on a specific account

* Fix trade action behavior on a specific account

* Replace break statement with continue instead
This commit is contained in:
Alex 2018-06-13 19:37:49 -04:00 committed by Carson McManus
parent 5e4dec604b
commit 8815121cff

View file

@ -540,7 +540,7 @@ namespace SteamGuard
{
if (user != "")
if (!string.Equals(account.AccountName, user, StringComparison.CurrentCultureIgnoreCase))
break;
continue;
processConfirmations(account);
}