Merge pull request #3466 from techAPJ/patch-2

FIX: user archive export was failing in some cases
This commit is contained in:
Robin Ward 2015-05-14 11:16:51 -04:00
commit c23aeddccf
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ module Jobs
# deleted topic
topic_data = Topic.with_deleted.find_by(id: user_archive['topic_id'])
end
category = topic_data.category
category = topic_data.category if topic_data
sub_category = "-"
if category
category_name = category.name