diff --git a/src/providers/sources/fedapi.ts b/src/providers/sources/fedapi.ts index 53e9378..cef8d27 100644 --- a/src/providers/sources/fedapi.ts +++ b/src/providers/sources/fedapi.ts @@ -154,8 +154,9 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis export const FedAPIScraper = makeSourcerer({ id: 'fedapi', name: 'FED API (4K)', - rank: getUserToken() ? 240 : 140, - disabled: false, + rank: 240, + // rank: getUserToken() ? 240 : 140, + disabled: !getUserToken(), flags: [flags.CORS_ALLOWED], scrapeMovie: comboScraper, scrapeShow: comboScraper,