1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

fix episodes not redirecting properly

This commit is contained in:
mrjvs 2023-10-21 22:24:10 +02:00
parent e57d4578a2
commit 851bbb2203

View file

@ -181,6 +181,10 @@ export async function convertLegacyUrl(
const urlParts = url.split("/").slice(2);
const [, type, id] = urlParts[0].split("-", 3);
const suffix = urlParts
.slice(1)
.map((v) => `/${v}`)
.join("");
if (isLegacyMediaType(url)) {
const details = await getMediaDetails(id, TMDBContentTypes.TV);
@ -188,7 +192,7 @@ export async function convertLegacyUrl(
MWMediaType.SERIES,
details.id.toString(),
details.name
)}`;
)}${suffix}`;
}
const mediaType = TMDBMediaToMediaType(type as TMDBContentTypes);