fix: remove unnecessary URL encoding for file links in getEpisodes and getMeta

This commit is contained in:
himanshu8443
2025-08-15 16:25:18 +05:30
parent 7689fbce6e
commit 712234fac9
4 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ export const getMeta = async function ({
itemTitle !== "../" &&
itemTitle !== "Parent Directory"
) {
const fullLink = encodeURIComponent(itemLink);
const fullLink = itemLink;
// If it's a directory (ends with /)
if (itemTitle.endsWith("/")) {