mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -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 {
|
interface DiscoverMovieOptions {
|
||||||
page?: number;
|
page?: number;
|
||||||
includeAdult?: boolean;
|
includeAdult?: boolean;
|
||||||
|
includeVideo?: boolean;
|
||||||
language?: string;
|
language?: string;
|
||||||
primaryReleaseDateGte?: string;
|
primaryReleaseDateGte?: string;
|
||||||
primaryReleaseDateLte?: string;
|
primaryReleaseDateLte?: string;
|
||||||
@@ -490,6 +491,7 @@ class TheMovieDb extends ExternalAPI implements TvShowProvider {
|
|||||||
sortBy = 'popularity.desc',
|
sortBy = 'popularity.desc',
|
||||||
page = 1,
|
page = 1,
|
||||||
includeAdult = false,
|
includeAdult = false,
|
||||||
|
includeVideo = true,
|
||||||
language = this.locale,
|
language = this.locale,
|
||||||
primaryReleaseDateGte,
|
primaryReleaseDateGte,
|
||||||
primaryReleaseDateLte,
|
primaryReleaseDateLte,
|
||||||
@@ -527,6 +529,7 @@ class TheMovieDb extends ExternalAPI implements TvShowProvider {
|
|||||||
sort_by: sortBy,
|
sort_by: sortBy,
|
||||||
page,
|
page,
|
||||||
include_adult: includeAdult,
|
include_adult: includeAdult,
|
||||||
|
include_video: includeVideo,
|
||||||
language,
|
language,
|
||||||
region: this.discoverRegion || '',
|
region: this.discoverRegion || '',
|
||||||
with_original_language:
|
with_original_language:
|
||||||
|
|||||||
Reference in New Issue
Block a user