Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GetSearch() Deserialization Results in: "Arithmetic operation resulted in an overflow." #12

Open
pimbrouwers opened this issue Jul 29, 2014 · 3 comments

Comments

@pimbrouwers
Copy link

Fix:
In the "JsonTypes" directory, modify the following files:

User.cs
Original
[JsonProperty("id")]
public int Id { get; set; }

Change to
[JsonProperty("id")]
public long Id { get; set; }

Hashtag.cs
Original
[JsonProperty("indices")]
public List Indices { get; set; }

Change to
[JsonProperty("indices")]
public List Indices { get; set; }

@abhith
Copy link

abhith commented Mar 29, 2016

+1
@pimbrouwers Thanks for User.cs correction.

@pimbrouwers
Copy link
Author

You are more than welcome! Thank YOU for provider such a great API wrapper.

@andyhutch77
Copy link
Owner

Hi @pimbrouwers , please submit this as a pull request and I will include it. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants