From f3a4cc841dca64667c5e4edd2b5de83a83fde9b0 Mon Sep 17 00:00:00 2001 From: XSWY <134489068+0pt1onz@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:58:40 +0200 Subject: [PATCH] Update API endpoint for Thunderleaf scraper --- src/providers/sources/florence/thunderleaf.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/sources/florence/thunderleaf.ts b/src/providers/sources/florence/thunderleaf.ts index a7cb7c1..fe96fb7 100644 --- a/src/providers/sources/florence/thunderleaf.ts +++ b/src/providers/sources/florence/thunderleaf.ts @@ -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, -}); \ No newline at end of file +});