Skip to content

There are some parameter mismatches in the discover interface #116

@Sanotsu

Description

@Sanotsu

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.

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