mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: Apply suggestion from @julien-nc
Co-authored-by: Julien Veyssier <julien-nc@posteo.net> Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
f7a89fee24
commit
5c5c9384b1
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ class TaskProcessingPickupSpeed implements ISetupCheck {
|
|||
}
|
||||
}
|
||||
|
||||
if ($slowCount / $taskCount < self::MAX_SLOW_PERCENTAGE) {
|
||||
if (($slowCount / $taskCount) < self::MAX_SLOW_PERCENTAGE) {
|
||||
return SetupResult::success(
|
||||
$this->l10n->n(
|
||||
'The task pickup speed has been ok in the last day.',
|
||||
|
|
|
|||
Loading…
Reference in a new issue