mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: Do not check for strict cookie when running webcron
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
52f85a00f4
commit
1fc6cceef8
1 changed files with 3 additions and 1 deletions
|
|
@ -515,7 +515,9 @@ class OC {
|
|||
$processingScript = $processingScript[count($processingScript) - 1];
|
||||
|
||||
// index.php routes are handled in the middleware
|
||||
if ($processingScript === 'index.php') {
|
||||
// and cron.php does not need any authentication at all
|
||||
if ($processingScript === 'index.php'
|
||||
|| $processingScript === 'cron.php') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue