This commit is contained in:
2025-12-02 21:16:05 +01:00
parent 01376362af
commit f479d87584
4 changed files with 5 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ async function loadAnime() {
}
const fetchUrl = extensionName
? `/api/anime/${animeId.slice(0,40)}?ext=${extensionName}`
? `/api/anime/${animeId}?ext=${extensionName}`
: `/api/anime/${animeId}`;
const res = await fetch(fetchUrl);
const data = await res.json();