make fedapi require custom token

This commit is contained in:
Pas 2025-02-17 20:33:16 -07:00
parent f9b257bcf4
commit 91e3e11fa5

View file

@ -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,