Skip to content

Commit

Permalink
fixes the num_tokens_dropped deserialization (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemcz authored Oct 1, 2024
1 parent 9c2cbb3 commit 1814bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Typesense/SearchResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public record TextMatchInfo
public int FieldsMatched { get; set; }

[JsonPropertyName("num_tokens_dropped")]
public int NumTokensDropped { get; set; }
public long NumTokensDropped { get; set; }

[JsonPropertyName("score")]
public string Score { get; set; }
Expand Down

0 comments on commit 1814bff

Please sign in to comment.