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:
parent
5e4dec604b
commit
8815121cff
1 changed files with 1 additions and 1 deletions
|
@ -540,7 +540,7 @@ namespace SteamGuard
|
|||
{
|
||||
if (user != "")
|
||||
if (!string.Equals(account.AccountName, user, StringComparison.CurrentCultureIgnoreCase))
|
||||
break;
|
||||
continue;
|
||||
|
||||
processConfirmations(account);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue