We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae59aba + a7346ef commit 3471c0aCopy full SHA for 3471c0a
1 file changed
lib/base.php
@@ -577,7 +577,9 @@ private static function performSameSiteCookieProtection(\OCP\IConfig $config): v
577
$processingScript = $processingScript[count($processingScript) - 1];
578
579
// index.php routes are handled in the middleware
580
- if ($processingScript === 'index.php') {
+ // and cron.php does not need any authentication at all
581
+ if ($processingScript === 'index.php'
582
+ || $processingScript === 'cron.php') {
583
return;
584
}
585
0 commit comments