Commit 5aadbfeea2f64471f5379187f0f12cbe667a6929
1 parent
8c614360
Exists in
master
and in
1 other branch
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 | 43 | info.push(proposal.author ? proposal.author.identifier : '') |
| 44 | 44 | info.push(proposal.topic.name) |
| 45 | 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 | 47 | info.push(proposal.comments.count) |
| 48 | 48 | info.push(proposal.person_followers.count) |
| 49 | 49 | info.push(proposal.votes_for) | ... | ... |