Skip to content

Commit

Permalink
Fix twig deprecations in web profiler twig files
Browse files Browse the repository at this point in the history
  • Loading branch information
mazodude authored and fabpot committed Nov 19, 2024
1 parent 8ce2ad9 commit 4afb039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/Collector/notifier.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
{{- 'Content: ' ~ notification.getContent() }}<br/>
{{- 'Importance: ' ~ notification.getImportance() }}<br/>
{{- 'Emoji: ' ~ (notification.getEmoji() is empty ? '(empty)' : notification.getEmoji()) }}<br/>
{{- 'Exception: ' ~ notification.getException() ?? '(empty)' }}<br/>
{{- 'Exception: ' ~ (notification.getException() ?? '(empty)') }}<br/>
{{- 'ExceptionAsString: ' ~ (notification.getExceptionAsString() is empty ? '(empty)' : notification.getExceptionAsString()) }}
</pre>
</div>
Expand Down

0 comments on commit 4afb039

Please sign in to comment.