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/cd1d8652c95e8772894f3fa6db2219577e938966/server/constants/media.ts
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
export enum MediaRequestStatus {
|
|
PENDING = 1,
|
|
APPROVED,
|
|
DECLINED,
|
|
FAILED,
|
|
COMPLETED,
|
|
}
|
|
|
|
export enum MediaType {
|
|
MOVIE = 'movie',
|
|
TV = 'tv',
|
|
}
|
|
|
|
export enum MediaStatus {
|
|
UNKNOWN = 1,
|
|
PENDING,
|
|
PROCESSING,
|
|
PARTIALLY_AVAILABLE,
|
|
AVAILABLE,
|
|
DELETED,
|
|
}
|