Skip to content

Commit

Permalink
Clockwork: manifest.json-Request ignorieren (#6077)
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed Apr 6, 2024
1 parent 426f14d commit a35fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redaxo/src/addons/debug/boot.php
Expand Up @@ -145,7 +145,7 @@
} else {
register_shutdown_function(static function () use ($shutdownFn) {
// don't track preflight requests
if ('/__clockwork/latest' === $_SERVER['REQUEST_URI']) {
if (in_array($_SERVER['REQUEST_URI'], ['/__clockwork/latest', '/assets/addons/debug/clockwork/manifest.json'], true)) {
return;
}

Expand Down

0 comments on commit a35fab5

Please sign in to comment.