Merge pull request #4061 from tgxworld/fix_feed_poll

FIX: RSS description might be `nil`.
This commit is contained in:
Régis Hanol 2016-03-07 10:52:24 +01:00
commit 607901cf9d
1 changed files with 1 additions and 5 deletions

View File

@ -86,11 +86,7 @@ module Jobs
end end
def content def content
if @article_rss_item.content @article_rss_item.content.try(:scrub) || @article_rss_item.description.try(:scrub)
@article_rss_item.content.scrub
else
@article_rss_item.description.scrub
end
end end
def title def title