Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/d3c6bc1619c39b1e6225d405efaad5df99a27406
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
8 deletions
@ -0,0 +1 @@
* text eol=lf
@ -236,11 +236,9 @@ export class User {
const movieDate = new Date ( ) ;
if ( movieQuotaDays ) {
movieDate . setDate ( movieDate . getDate ( ) - movieQuotaDays ) ;
} else {
movieDate . setDate ( 0 ) ;
}
// YYYY-MM-DD format
const movieQuotaStartDate = movieDate . toJSON ( ) . split ( 'T' ) [ 0 ] ;
const movieQuotaStartDate = movieDate . toJSON ( ) ;
const movieQuotaUsed = movieQuotaLimit
? await requestRepository . count ( {
where : {
@ -261,11 +259,8 @@ export class User {
const tvDate = new Date ( ) ;
if ( tvQuotaDays ) {
tvDate . setDate ( tvDate . getDate ( ) - tvQuotaDays ) ;
} else {
tvDate . setDate ( 0 ) ;
}
// YYYY-MM-DD format
const tvQuotaStartDate = tvDate . toJSON ( ) . split ( 'T' ) [ 0 ] ;
const tvQuotaStartDate = tvDate . toJSON ( ) ;
const tvQuotaUsed = tvQuotaLimit
? (
await requestRepository