FIX: check if post exists in topic

This commit is contained in:
Arpit Jalan 2017-03-31 17:57:46 +05:30
parent 7690cc6ca5
commit 2418daeb63
1 changed files with 1 additions and 1 deletions

View File

@ -970,7 +970,7 @@ SQL
num_hours = time.to_f num_hours = time.to_f
if num_hours > 0 if num_hours > 0
last_post_created_at = self.ordered_posts.last.created_at || time_now last_post_created_at = self.ordered_posts.last.present? ? self.ordered_posts.last.created_at : time_now
topic_status_update.execute_at = last_post_created_at + num_hours.hours topic_status_update.execute_at = last_post_created_at + num_hours.hours
topic_status_update.created_at = last_post_created_at topic_status_update.created_at = last_post_created_at
end end