mirror of
https://github.com/movie-web/movie-web.git
synced 2025-02-25 23:53:34 +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 [, 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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user