From 0a101734a6e2d96a9dc8c863fc7aa4b67ff2102f Mon Sep 17 00:00:00 2001 From: cloud <62519659+lem6ns@users.noreply.github.com> Date: Sat, 10 Dec 2022 18:03:31 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20Remove=20"first=5Fair=5Fd?= =?UTF-8?q?ate=5Fyear"=20from=20query?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/providers/list/superstream/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/list/superstream/index.ts b/src/providers/list/superstream/index.ts index 9d1bb77d..04259ff5 100644 --- a/src/providers/list/superstream/index.ts +++ b/src/providers/list/superstream/index.ts @@ -261,7 +261,7 @@ export const superStreamScraper: MWMediaProvider = { const detailRes = (await get(apiQuery, true).then((r) => r.json())).data; const firstSearchResult = ( await fetch( - `https://api.themoviedb.org/3/search/tv?api_key=${TMDB_API_KEY}&language=en-US&page=1&query=${detailRes.title}&include_adult=false&first_air_date_year=${detailRes.year}`, + `https://api.themoviedb.org/3/search/tv?api_key=${TMDB_API_KEY}&language=en-US&page=1&query=${detailRes.title}&include_adult=false`, ).then((r) => r.json()) ).results[0]; const showDetails = await fetch(