fix(handler): use new frembed domain (again)

This commit is contained in:
WebStreamr 2025-06-03 14:21:18 +00:00
parent f0ffd9b024
commit 0b9cf21fae
No known key found for this signature in database
2 changed files with 1 additions and 1 deletions

View file

@ -27,7 +27,7 @@ export class Frembed implements Handler {
const tmdbId = await getTmdbIdFromImdbId(ctx, this.fetcher, parseImdbId(id));
const apiUrl = new URL(`https://frembed.site/api/series?id=${tmdbId.id}&sa=${tmdbId.series}&epi=${tmdbId.episode}&idType=tmdb`);
const apiUrl = new URL(`https://frembed.space/api/series?id=${tmdbId.id}&sa=${tmdbId.series}&epi=${tmdbId.episode}&idType=tmdb`);
const json = JSON.parse(await this.fetcher.text(ctx, apiUrl));