From fc98ac2845e34d06e47de1dd4e2d18170a8aabc1 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Thu, 20 Feb 2025 16:56:39 -0700 Subject: [PATCH] fix fedapi error for not found --- src/providers/sources/fedapi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/sources/fedapi.ts b/src/providers/sources/fedapi.ts index cef8d27..48b61e4 100644 --- a/src/providers/sources/fedapi.ts +++ b/src/providers/sources/fedapi.ts @@ -64,7 +64,7 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis }, }); - if (data?.error === 'No quality list in FebBox response') { + if (data?.error === 'No results found in MovieBox search') { throw new NotFoundError('No stream found'); } if (!data) throw new NotFoundError('No response from API');