Merge pull request #3486 from techAPJ/patch-2

FIX: handle user export failure when post is not linked to a topic
This commit is contained in:
Régis Hanol 2015-05-18 09:21:58 +02:00
commit b2f50c154a
1 changed files with 3 additions and 5 deletions

View File

@ -130,11 +130,9 @@ module Jobs
user_archive_array = []
topic_data = user_archive.topic
user_archive = user_archive.as_json
if topic_data.nil?
# deleted topic
topic_data = Topic.with_deleted.find_by(id: user_archive['topic_id'])
end
category = topic_data.category if topic_data
topic_data = Topic.with_deleted.find_by(id: user_archive['topic_id']) if topic_data.nil?
return user_archive_array if topic_data.nil?
category = topic_data.category
sub_category = "-"
if category
category_name = category.name