Update API endpoint for Thunderleaf scraper

This commit is contained in:
XSWY 2026-03-15 16:58:40 +02:00 committed by GitHub
parent 403b1e50e9
commit f3a4cc841d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import { makeSourcerer, SourcererOutput } from "@/providers/base";
import { MovieScrapeContext, ShowScrapeContext } from "@/utils/context";
import { NotFoundError } from "@/utils/errors";
const API = "https://ubiquitous-parakeet-pxqvgx7j57jhrrqx-3000.app.github.dev";
const API = "https://thunderleaf.onrender.com";
async function ThunderleafScraper(
ctx: MovieScrapeContext | ShowScrapeContext
@ -55,4 +55,4 @@ export const thunderleafScraper = makeSourcerer({
flags: [flags.CORS_ALLOWED],
scrapeMovie: ThunderleafScraper,
scrapeShow: ThunderleafScraper,
});
});