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/89287af096218f8a7e3d03fc1976fb2f37d3e91c/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 = '';
}