diff --git a/dist/protonMovies/meta.js b/dist/protonMovies/meta.js index 96eb7f0..1873f1c 100644 --- a/dist/protonMovies/meta.js +++ b/dist/protonMovies/meta.js @@ -58,7 +58,7 @@ const getMeta = function (_a) { const links = []; if (type === "movie") { const directLinks = []; - directLinks.push({ title: "Movie", link: link }); + directLinks.push({ title: "Movie", link: baseUrl + link }); links.push({ title: "Movie", directLinks: directLinks }); } else { diff --git a/providers/protonMovies/meta.ts b/providers/protonMovies/meta.ts index c9d1d05..fb62e32 100644 --- a/providers/protonMovies/meta.ts +++ b/providers/protonMovies/meta.ts @@ -68,7 +68,7 @@ export const getMeta = async function ({ if (type === "movie") { const directLinks: EpisodeLink[] = []; - directLinks.push({ title: "Movie", link: link }); + directLinks.push({ title: "Movie", link: baseUrl + link }); links.push({ title: "Movie", directLinks: directLinks }); } else { $("#episodes")