Skip to content

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

@pimbrouwers

Description

@pimbrouwers

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; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions