Update content-mappers.ts

This commit is contained in:
6ip 2026-03-24 03:51:35 +03:00 committed by GitHub
parent cbc9fc4fa6
commit ef1f0c7b09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,6 +104,10 @@ export function convertMetaToStreamingContentEnhanced(
if ((meta as any).videos) {
converted.videos = (meta as any).videos;
}
// CUSTOM CATALOG POSTERS
if ((meta as any).seasons) {
converted.seasons = (meta as any).seasons;
}
return converted;
}