diff --git a/src/providers/sources/autoembed.ts b/src/providers/sources/autoembed.ts index c5172d7..a045f19 100644 --- a/src/providers/sources/autoembed.ts +++ b/src/providers/sources/autoembed.ts @@ -7,7 +7,6 @@ import { NotFoundError } from '@/utils/errors'; const apiUrl = 'https://tom.autoembed.cc'; async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promise { - // Construct the API endpoint similar to the working example const mediaType = ctx.media.type === 'show' ? 'tv' : 'movie'; let id = ctx.media.tmdbId;