mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
Merge pull request #5688 from discourse/fix-embed-comments-template-error
FIX: Make sure a post has replies before accessing the reply_id
This commit is contained in:
commit
c9216626d8
|
@ -27,7 +27,7 @@
|
|||
</h3>
|
||||
<%= get_html(post.cooked) %>
|
||||
|
||||
<%- if post.reply_count > 0 %>
|
||||
<%- if post.reply_count > 0 && post.replies.exists? %>
|
||||
<%- if post.reply_count == 1 %>
|
||||
<%= link_to I18n.t('embed.replies', count: post.reply_count), post.full_url, 'data-link-to-post' => post.replies.first.id.to_s, :class => 'post-replies button' %>
|
||||
<% else %>
|
||||
|
|
Loading…
Reference in New Issue
Block a user