From 2e6e9ad65772a37a17e511778ac0aba514157efb Mon Sep 17 00:00:00 2001 From: TacoCake Date: Tue, 28 Oct 2025 22:29:04 -0400 Subject: [PATCH] fix: include `video` content in the blacklisted tags processing job (#1736) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- server/api/themoviedb/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/api/themoviedb/index.ts b/server/api/themoviedb/index.ts index a01f356c8..74ec5841f 100644 --- a/server/api/themoviedb/index.ts +++ b/server/api/themoviedb/index.ts @@ -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: