Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: Apply suggestion from @julien-nc
Co-authored-by: Julien Veyssier <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
2 people authored and AndyScherzinger committed Oct 15, 2025
commit 7f9af58116ad4ec1bf0856670720fe4726791d6e
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function run(): SetupResult {
}
}

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.',
Expand Down
Loading