mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-23 18:29:19 -05:00
fix: include video content in the blacklisted tags processing job (#1736)
* fix: include video content in the blacklisted tags processing job Modified the “blacklisted tags” job to include adult & video content, this correctly blacklists more adult films that were always missed, even if they had the tag. * refactor: remove dead code * refactor: remove redundant explicit arguments
This commit is contained in:
@@ -73,6 +73,7 @@ export interface TmdbCertificationResponse {
|
||||
interface DiscoverMovieOptions {
|
||||
page?: number;
|
||||
includeAdult?: boolean;
|
||||
includeVideo?: boolean;
|
||||
language?: string;
|
||||
primaryReleaseDateGte?: string;
|
||||
primaryReleaseDateLte?: string;
|
||||
@@ -490,6 +491,7 @@ class TheMovieDb extends ExternalAPI implements TvShowProvider {
|
||||
sortBy = 'popularity.desc',
|
||||
page = 1,
|
||||
includeAdult = false,
|
||||
includeVideo = true,
|
||||
language = this.locale,
|
||||
primaryReleaseDateGte,
|
||||
primaryReleaseDateLte,
|
||||
@@ -527,6 +529,7 @@ class TheMovieDb extends ExternalAPI implements TvShowProvider {
|
||||
sort_by: sortBy,
|
||||
page,
|
||||
include_adult: includeAdult,
|
||||
include_video: includeVideo,
|
||||
language,
|
||||
region: this.discoverRegion || '',
|
||||
with_original_language:
|
||||
|
||||
Reference in New Issue
Block a user