mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 01:00:50 -04:00
Merge pull request #49130 from nextcloud/fix/cron-strict-cookie
fix: Do not check for strict cookie when running webcron
This commit is contained in:
commit
7ed72e1d3e
1 changed files with 3 additions and 1 deletions
|
|
@ -517,7 +517,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