Skip to content

Commit af53838

Browse files
joshtrichardsbackportbot[bot]
authored andcommitted
fix(SetupChecks): maintenance window length is 4h (not 6h)
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent d404f58 commit af53838

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
@@ -41,7 +41,7 @@ public function run(): SetupResult {
4141
}
4242

4343
$startValue = (int)$configValue;
44-
$endValue = ($startValue + 6) % 24;
44+
$endValue = ($startValue + 4) % 24;
4545
return SetupResult::success(
4646
str_replace(
4747
['{start}', '{end}'],

0 commit comments

Comments
 (0)