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/f88c4a6d4a49f8f3451ba6c85153677f33b7f5f6/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[];
}