diff --git a/app/views/embed/comments.html.erb b/app/views/embed/comments.html.erb
index edb6319c4..5e55330a6 100644
--- a/app/views/embed/comments.html.erb
+++ b/app/views/embed/comments.html.erb
@@ -11,7 +11,7 @@
<%- @topic_view.posts.each do |post| %>
<%= link_to embed_post_date(post.created_at), post.url, class: 'post-date', target: "_blank" %>
- <%- if post.reply_to_post.present? %>
+ <%- if post.reply_to_post.present? && !post.cooked.index('aside') %>
<%= link_to I18n.t('embed.in_reply_to', username: post.reply_to_post.username), post.reply_to_post.url, 'data-link-to-post' => post.reply_to_post.id.to_s, :class => 'in-reply-to' %>
<%- end %>