Skip to content

Commit

Permalink
The nextPage variable has changed from an Int32 value to a String val…
Browse files Browse the repository at this point in the history
…ue. Resulted in breaking NewsScout. Fixed issue with the nextPage value.
  • Loading branch information
zachsanford committed Jun 13, 2023
1 parent 3b5c5a2 commit af90561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NewsScout.Source/Models/ApiResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class ApiResponse
public string? Status { get; set; }
public int? TotalResults { get; set; }
public Result[]? Results { get; set; }
public int? NextPage { get; set; }
public string? NextPage { get; set; }
}

public class Result
Expand Down

0 comments on commit af90561

Please sign in to comment.