Skip to content

Commit a1005b1

Browse files
committed
Fixed issue with Front controller reached 100 router match iterations in blog/rss action
1 parent 835434a commit a1005b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Controller/Router.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function match(\Magento\Framework\App\RequestInterface $request)
152152
$request
153153
->setRouteName('blog')
154154
->setControllerName(Url::CONTROLLER_RSS)
155-
->setActionName(isset($pathInfo[2]) ? $pathInfo[2] : 'index');
155+
->setActionName(isset($pathInfo[2]) ? $pathInfo[2] : 'feed');
156156
} elseif ($pathInfo[1] == $this->_url->getRoute(Url::CONTROLLER_SEARCH)
157157
&& !empty($pathInfo[2])
158158
) {

0 commit comments

Comments
 (0)