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

11 lines
157 B

interface PageInfo {
pages: number;
page: number;
results: number;
pageSize: number;
}
export interface PaginatedResponse {
pageInfo: PageInfo;
}