Skip to content
This repository has been archived by the owner on Jan 5, 2018. It is now read-only.

Fix removed redirects #203

Open
wants to merge 2 commits into
base: 8.x-1.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Plugin/Filter/EntityEmbedFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ public function process($text, $langcode) {
}
}
catch(\Exception $e) {
if ($e instanceof \Drupal\Core\Form\EnforcedResponseException) {
throw $e;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this look nicer if we'd add another catch() block?

}
watchdog_exception('entity_embed', $e);
}

Expand Down