CSharpTradeOffers
CSharpTradeOffers copied to clipboard
A C# library designed to aid in interacting with Steam trade offers.
Error
If you comment a profile you get this error in SteamResponse.cs ``` public TSerializable DeserializeJson() { string streamData = ReadStream(); return streamData == null ? default(TSerializable) : JsonConvert.DeserializeObject(ReadStream()); } ```...
Fixed System.ArgumentNullException in `public TSerializable DeserializeJson()`
> Error converting value {null} to type 'System.UInt64'. Path 'tradeid', line 1, position 15. I'm currently running the donation bot and this bug is killing the bot very often. Is...