Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/commit/db49b2024d399d90f2d1500b262374efc42f333c/server/interfaces/api/personInterfaces.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/server/interfaces/api/personInterfaces.ts

8 lines
196 B

import { PersonCreditCast, PersonCreditCrew } from '../../models/Person';
export interface PersonCombinedCreditsResponse {
id: number;
cast: PersonCreditCast[];
crew: PersonCreditCrew[];
}