From 4958fa82d7bad8724e3ee0482e09d2ada46b8145 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 29 Oct 2016 03:02:35 +0200 Subject: [PATCH] Add new sell confirmation type --- ArchiSteamFarm/MobileAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/MobileAuthenticator.cs b/ArchiSteamFarm/MobileAuthenticator.cs index 1663938ca..474c474fc 100644 --- a/ArchiSteamFarm/MobileAuthenticator.cs +++ b/ArchiSteamFarm/MobileAuthenticator.cs @@ -256,7 +256,7 @@ namespace ArchiSteamFarm { Steam.ConfirmationDetails.EType type; string description = descriptionNode.InnerText; - if (description.Equals("Sell - Market Listing")) { + if (description.StartsWith("Sell - ", StringComparison.Ordinal)) { type = Steam.ConfirmationDetails.EType.Market; } else if (description.StartsWith("Trade with ", StringComparison.Ordinal)) { type = Steam.ConfirmationDetails.EType.Trade;