Skip to content
Snippets Groups Projects
Commit d07d21c2 authored by Jean-Laurent DUZANT's avatar Jean-Laurent DUZANT
Browse files

FIX #20391 TIME 0 fix for php 8

parent 43b9e2da
No related branches found
No related tags found
No related merge requests found
......@@ -260,7 +260,7 @@ class IndexingController
}
$delay = $priority['delays'];
}
if (Validator::boolType()->notEmpty()->validate($queryParams['today'])) {
if (Validator::boolType()->notEmpty()->validate($queryParams['today'] ?? false)) {
$delay = 0;
}
if (!Validator::intVal()->validate($delay)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment