fix: correct episodesLink construction in getMeta function

This commit is contained in:
himanshu8443
2025-08-15 17:13:49 +05:30
parent 4a1d6394a1
commit a7aaf92476
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ export const getMeta = async function ({
if (itemTitle.endsWith("/")) {
const cleanTitle = itemTitle.replace(/\/$/, "");
links.push({
episodesLink: link + itemLink + fullLink,
episodesLink: link + itemLink,
title: cleanTitle,
});
}