mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix(quotas): Time value of a quota was being ignored
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user