Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/3052f12c91b3ce86128324e3698fff61bbce3f2a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
18 additions and
14 deletions
@ -42,24 +42,28 @@ personRoutes.get('/:id/combined_credits', async (req, res) => {
) ;
return res . status ( 200 ) . json ( {
cast : combinedCredits.cast.map ( ( result ) = >
mapCastCredits (
result ,
castMedia . find (
( med ) = >
med . tmdbId === result . id && med . mediaType === result . media_type
cast : combinedCredits.cast
. map ( ( result ) = >
mapCastCredits (
result ,
castMedia . find (
( med ) = >
med . tmdbId === result . id && med . mediaType === result . media_type
)
)
)
) ,
crew : combinedCredits.crew.map ( ( result ) = >
mapCrewCredits (
result ,
crewMedia . find (
( med ) = >
med . tmdbId === result . id && med . mediaType === result . media_type
. filter ( ( item ) = > ! item . adult ) ,
crew : combinedCredits.crew
. map ( ( result ) = >
mapCrewCredits (
result ,
crewMedia . find (
( med ) = >
med . tmdbId === result . id && med . mediaType === result . media_type
)
)
)
) ,
. filter ( ( item ) = > ! item . adult ) ,
id : combinedCredits.id ,
} ) ;
} ) ;