FIX: Don't raise an exception when last_posted_at is nil

This commit is contained in:
Robin Ward 2014-06-23 11:38:08 -04:00
parent 449f81785f
commit a188ba77dc

View File

@ -133,7 +133,8 @@ class ComposerMessagesFinder
return if topic.nil? ||
SiteSetting.warn_reviving_old_topic_age < 1 ||
(topic.last_posted_at && topic.last_posted_at > SiteSetting.warn_reviving_old_topic_age.days.ago)
topic.last_posted_at.nil? ||
topic.last_posted_at > SiteSetting.warn_reviving_old_topic_age.days.ago
{templateName: 'composer/education',
wait_for_typing: false,