From baff4e33fc603028ec77eb4ad1ae8455f31083b3 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 29 Jan 2018 20:28:59 -0500 Subject: [PATCH] fix #26, "deny" actually accepts trades confirmations (oops) --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index c0d6aea..e2399be 100644 --- a/Program.cs +++ b/Program.cs @@ -701,7 +701,7 @@ namespace SteamGuard break; case TradeAction.Deny: if (Verbose) Console.Write($"Denying {trades[t].Description}..."); - success = account.AcceptConfirmation(trades[t]); + success = account.DenyConfirmation(trades[t]); break; case TradeAction.Ignore: if (Verbose) Console.Write($"Ignoring {trades[t].Description}...");