Skip to content

Commit d1921c9

Browse files
Merge pull request #59413 from nextcloud/jtr/fix-setupcheck-maintenance-length
fix(SetupChecks): maintenance window length is 4h (not 6h)
2 parents 7269f43 + 6478267 commit d1921c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/settings/lib/SetupChecks/MaintenanceWindowStart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function run(): SetupResult {
4444
}
4545

4646
$startValue = (int)$configValue;
47-
$endValue = ($startValue + 6) % 24;
47+
$endValue = ($startValue + 4) % 24;
4848
return SetupResult::success(
4949
str_replace(
5050
['{start}', '{end}'],

0 commit comments

Comments
 (0)