We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b367ab2 commit 4261c9dCopy full SHA for 4261c9d
apps/settings/lib/SetupChecks/TaskProcessingPickupSpeed.php
@@ -38,7 +38,7 @@ public function run(): SetupResult {
38
$tasks = $this->taskProcessingManager->getTasks(userId: '', scheduleAfter: $this->timeFactory->now()->getTimestamp() - 60 * 60 * self::TIME_SPAN); // userId: '' means no filter, whereas null would mean guest
39
$taskCount = count($tasks);
40
if ($taskCount === 0) {
41
- return SetupResult::success($this->l10n->n('No scheduled tasks in the last %n hours.', 'No scheduled tasks in the last %n hours.', self::TIME_SPAN));
+ return SetupResult::success($this->l10n->n('No scheduled tasks in the last %n hour.', 'No scheduled tasks in the last %n hours.', self::TIME_SPAN));
42
}
43
$slowCount = 0;
44
foreach ($tasks as $task) {
0 commit comments