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/4e9be7a3f7304ee7be5ee6fd34b1ea8f6c0cf399/server/entity/Session.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/server/entity/Session.ts

16 lines
336 B

import type { ISession } from 'connect-typeorm';
import { Column, Entity, Index, PrimaryColumn } from 'typeorm';
@Entity()
export class Session implements ISession {
@Index()
@Column('bigint')
public expiredAt = Date.now();
@PrimaryColumn('varchar', { length: 255 })
public id = '';
@Column('text')
public json = '';
}