mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-05 18:44:36 +02:00
fix: bug in prior refactor (#4197)
This commit is contained in:
parent
c11bc184ca
commit
9215b95779
2 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ class DisplayAction implements ActionInterface
|
|||
if ($errorCount >= $reportLimit) {
|
||||
if ($errorOutput === 'feed') {
|
||||
// Render the exception as a feed item
|
||||
$items[] = $this->createFeedItemFromException($e, $bridge);
|
||||
$items = [$this->createFeedItemFromException($e, $bridge)];
|
||||
} elseif ($errorOutput === 'http') {
|
||||
return new Response(render(__DIR__ . '/../templates/exception.html.php', ['e' => $e]), 500);
|
||||
} elseif ($errorOutput === 'none') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue