Add check for null reply_to_user
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
FloatingGhost 2022-12-07 13:41:12 +00:00
parent 1afba64464
commit cb3ccf5f47
1 changed files with 5 additions and 3 deletions

View File

@ -46,9 +46,11 @@
<%= gettext("Reply to") %>
</a>
<span class="h-card">
<a href="<%= (@reply_to_user.uri || @reply_to_user.ap_id) %>" class="u-url mention">
@<%= @reply_to_user.nickname %>
</a>
<%= if @reply_to_user do %>
<a href="<%= (@reply_to_user.uri || @reply_to_user.ap_id) %>" class="u-url mention">
@<%= @reply_to_user.nickname %>
</a>
<% end %>
</span>
</div>
<% end %>