From e2f7aa3083d671f6a7bdc209ade6f26841335e34 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Tue, 11 Dec 2018 19:59:13 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Json/Steam.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Json/Steam.cs b/ArchiSteamFarm/Json/Steam.cs index b8bb5bc79..d2a5faf91 100644 --- a/ArchiSteamFarm/Json/Steam.cs +++ b/ArchiSteamFarm/Json/Steam.cs @@ -131,7 +131,7 @@ namespace ArchiSteamFarm.Json { // Constructed from trades being received internal Asset(uint appID, ulong contextID, ulong classID, uint amount, uint realAppID, EType type = EType.Unknown) { if ((appID == 0) || (contextID == 0) || (classID == 0) || (amount == 0) || (realAppID == 0)) { - throw new ArgumentNullException(nameof(classID) + " || " + nameof(contextID) + " || " + nameof(classID) + " || " + nameof(amount) + " || " + nameof(realAppID)); + throw new ArgumentNullException(nameof(appID) + " || " + nameof(contextID) + " || " + nameof(classID) + " || " + nameof(amount) + " || " + nameof(realAppID)); } AppID = appID;