Skip latest posts with no topic in rss

This commit is contained in:
James Kiesel 2015-08-13 23:39:19 -07:00
parent 6711d12f68
commit 9068f9f9bf

View File

@ -7,7 +7,7 @@
<link><%= @link %></link>
<description><%= @description %></description>
<% @posts.each do |post| %>
<% next unless post.user %>
<% next unless post.user && post.topic %>
<item>
<title><%= post.topic.title %></title>
<dc:creator><![CDATA[<%= "@#{post.user.username}#{" #{post.user.name}" if (post.user.name.present? && SiteSetting.enable_names?)}" -%>]]></dc:creator>