mirror of
https://github.com/movie-web/movie-web.git
synced 2025-02-26 00:13:33 +01:00
fix episodes not redirecting properly
This commit is contained in:
parent
e57d4578a2
commit
851bbb2203
@ -181,6 +181,10 @@ export async function convertLegacyUrl(
|
|||||||
|
|
||||||
const urlParts = url.split("/").slice(2);
|
const urlParts = url.split("/").slice(2);
|
||||||
const [, type, id] = urlParts[0].split("-", 3);
|
const [, type, id] = urlParts[0].split("-", 3);
|
||||||
|
const suffix = urlParts
|
||||||
|
.slice(1)
|
||||||
|
.map((v) => `/${v}`)
|
||||||
|
.join("");
|
||||||
|
|
||||||
if (isLegacyMediaType(url)) {
|
if (isLegacyMediaType(url)) {
|
||||||
const details = await getMediaDetails(id, TMDBContentTypes.TV);
|
const details = await getMediaDetails(id, TMDBContentTypes.TV);
|
||||||
@ -188,7 +192,7 @@ export async function convertLegacyUrl(
|
|||||||
MWMediaType.SERIES,
|
MWMediaType.SERIES,
|
||||||
details.id.toString(),
|
details.id.toString(),
|
||||||
details.name
|
details.name
|
||||||
)}`;
|
)}${suffix}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const mediaType = TMDBMediaToMediaType(type as TMDBContentTypes);
|
const mediaType = TMDBMediaToMediaType(type as TMDBContentTypes);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user