Add check for null reply_to_user
This commit is contained in:
parent
1afba64464
commit
cb3ccf5f47
|
@ -46,9 +46,11 @@
|
||||||
<%= gettext("Reply to") %>
|
<%= gettext("Reply to") %>
|
||||||
</a>
|
</a>
|
||||||
<span class="h-card">
|
<span class="h-card">
|
||||||
<a href="<%= (@reply_to_user.uri || @reply_to_user.ap_id) %>" class="u-url mention">
|
<%= if @reply_to_user do %>
|
||||||
@<%= @reply_to_user.nickname %>
|
<a href="<%= (@reply_to_user.uri || @reply_to_user.ap_id) %>" class="u-url mention">
|
||||||
</a>
|
@<%= @reply_to_user.nickname %>
|
||||||
|
</a>
|
||||||
|
<% end %>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in a new issue