CSharpTradeOffers icon indicating copy to clipboard operation
CSharpTradeOffers copied to clipboard

Error

Open ghost opened this issue 8 years ago • 1 comments

If you comment a profile you get this error in SteamResponse.cs

    public TSerializable DeserializeJson<TSerializable>()
    {
        string streamData = ReadStream();
        return streamData == null ? default(TSerializable) : JsonConvert.DeserializeObject<TSerializable>(ReadStream());
    }

default is null

ghost avatar Sep 27 '16 12:09 ghost

Created a pull request with a fix for this.

iamsilk avatar Oct 02 '16 15:10 iamsilk