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

16 lines
331 B

import { ISession } from 'connect-typeorm';
import { Index, Column, PrimaryColumn, Entity } 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 = '';
}