mirror of
https://github.com/nextcloud/server.git
synced 2026-03-07 07:50:57 -05: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
53dcd65723
commit
3f14db81bb
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ class TaskProcessingSuccessRate implements ISetupCheck {
|
|||
}
|
||||
}
|
||||
|
||||
if ($failedCount / $taskCount < self::MAX_FAILURE_PERCENTAGE) {
|
||||
if (($failedCount / $taskCount) < self::MAX_FAILURE_PERCENTAGE) {
|
||||
return SetupResult::success(
|
||||
$this->l10n->n(
|
||||
'Most tasks were successful in the last %n hour.',
|
||||
|
|
|
|||
Loading…
Reference in a new issue