Skip to content

Commit

Permalink
Merge pull request #61 from maikschneider/release-4.0.3
Browse files Browse the repository at this point in the history
release 4.0.3
  • Loading branch information
github-actions[bot] authored Feb 26, 2024
2 parents f31099d + f5f7a80 commit 46ecdc0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Middleware/Audio.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function process(
): ResponseInterface {
/** @var PageArguments $pageArguments */
$pageArguments = $request->getAttribute('routing', null);
if ($pageArguments->getPageType() !== '3414') {
if ($pageArguments->getPageType() !== '3414' || $request->getMethod() !== 'POST') {
// pipe request to other middleware handlers
return $handler->handle($request);
}
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'author_email' => '[email protected]',
'state' => 'stable',
'clearCacheOnLoad' => true,
'version' => '4.0.2',
'version' => '4.0.3',
'constraints' => [
'depends' => [
'typo3' => '11.0.0-13.99.99',
Expand Down
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"ignorePaths": ["Libraries/**"]
}

0 comments on commit 46ecdc0

Please sign in to comment.