Commit 5aadbfeea2f64471f5379187f0f12cbe667a6929

Authored by Leandro Santos
1 parent 8c614360
Exists in master

display body content

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/juventude_plugin/report_job.rb
@@ -43,7 +43,7 @@ class JuventudePlugin::ReportJob < Struct.new(:profile_id, :report_path) @@ -43,7 +43,7 @@ class JuventudePlugin::ReportJob < Struct.new(:profile_id, :report_path)
43 info.push(proposal.author ? proposal.author.identifier : '') 43 info.push(proposal.author ? proposal.author.identifier : '')
44 info.push(proposal.topic.name) 44 info.push(proposal.topic.name)
45 info.push(proposal.title) 45 info.push(proposal.title)
46 - info.push(proposal.abstract.present? ? proposal.abstract.gsub(/\s+/, ' ').strip : '') 46 + info.push(proposal.body.present? ? proposal.body.gsub(/\s+/, ' ').strip : '')
47 info.push(proposal.comments.count) 47 info.push(proposal.comments.count)
48 info.push(proposal.person_followers.count) 48 info.push(proposal.person_followers.count)
49 info.push(proposal.votes_for) 49 info.push(proposal.votes_for)