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 d1e9267 + 0cd626a commit 7ed72e1Copy full SHA for 7ed72e1
lib/base.php
@@ -517,7 +517,9 @@ private static function performSameSiteCookieProtection(\OCP\IConfig $config): v
517
$processingScript = $processingScript[count($processingScript) - 1];
518
519
// index.php routes are handled in the middleware
520
- if ($processingScript === 'index.php') {
+ // and cron.php does not need any authentication at all
521
+ if ($processingScript === 'index.php'
522
+ || $processingScript === 'cron.php') {
523
return;
524
}
525
0 commit comments