-
Notifications
You must be signed in to change notification settings - Fork 27
There are some parameter mismatches in the discover interface #116
Copy link
Copy link
Open
Description
I've identified some parameter mismatches in the versions/v3/category/discover.dart file. For example:
if (voteCountLessThan != null) {
queries.add('vote_count.gte=$voteCountLessThan'); // Should be .lte?
}
// ...
if (voteAverageLessThan != null) {
queries.add('vote_average.gte=$voteAverageLessThan'); // Should be .lte?
}Additionally, the current implementation doesn't fully support all parameters from the official API documentation (Discover TV reference). Such as, the API supports:
vote_average.gte float
vote_average.lte float
vote_count.gte float
vote_count.lte float
but the getTvShows() method currently doesn't implement all these filters.
Are there any plans to improve parameter support in future updates? Thanks.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels