Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/branch/refactor/pull-to-refresh/server/constants/issue.ts
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
export enum IssueType {
|
|
VIDEO = 1,
|
|
AUDIO = 2,
|
|
SUBTITLES = 3,
|
|
OTHER = 4,
|
|
}
|
|
|
|
export enum IssueStatus {
|
|
OPEN = 1,
|
|
RESOLVED = 2,
|
|
}
|
|
|
|
export const IssueTypeName = {
|
|
[IssueType.AUDIO]: 'Audio',
|
|
[IssueType.VIDEO]: 'Video',
|
|
[IssueType.SUBTITLES]: 'Subtitle',
|
|
[IssueType.OTHER]: 'Other',
|
|
};
|