From 8815121cff07abc134987cdae984a15a04e48de7 Mon Sep 17 00:00:00 2001 From: Alex <37449977+amdev0@users.noreply.github.com> Date: Wed, 13 Jun 2018 19:37:49 -0400 Subject: [PATCH] fix #36 trade action behavior on a specific account * Fix trade action behavior on a specific account * Replace break statement with continue instead --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 65ac3b5..d378fc3 100644 --- a/Program.cs +++ b/Program.cs @@ -540,7 +540,7 @@ namespace SteamGuard { if (user != "") if (!string.Equals(account.AccountName, user, StringComparison.CurrentCultureIgnoreCase)) - break; + continue; processConfirmations(account); }