aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_reminders/lib/BackgroundJob
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-07-31 12:10:50 -0700
committerChristopher Ng <chrng8@gmail.com>2023-08-03 15:30:11 -0700
commitb04d1a70e2d5b112e75b73edec5f13b76ee0dec0 (patch)
treef6a7d4e6796f541515ae93cbdce723d7ff0718a6 /apps/files_reminders/lib/BackgroundJob
parentbdf07413d02a23aa460aa821191325b04561d597 (diff)
downloadnextcloud-server-b04d1a70e2d5b112e75b73edec5f13b76ee0dec0.tar.gz
nextcloud-server-b04d1a70e2d5b112e75b73edec5f13b76ee0dec0.zip
enh: comment interval
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_reminders/lib/BackgroundJob')
-rw-r--r--apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php b/apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php
index 581b4c89351..cf55ee54509 100644
--- a/apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php
+++ b/apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php
@@ -38,7 +38,7 @@ class CleanUpReminders extends TimedJob {
) {
parent::__construct($time);
- $this->setInterval(60 * 60 * 24);
+ $this->setInterval(24 * 60 * 60); // 1 day
$this->setTimeSensitivity(IJob::TIME_INSENSITIVE);
}