X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/937b576bf55eae69ae8584bff049ae122ded57e5..8b781bb18b406788e2d62dbef07ba1e00e371c78:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index a76d45710..c6a9ad518 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -175,12 +175,12 @@ class User < ActiveRecord::Base diary_entry_score = self.diary_entries.inject(0) { |s,e| s += OSM.spam_score(e.body) } diary_comment_score = self.diary_comments.inject(0) { |s,e| s += OSM.spam_score(e.body) } - score = 0 + score = OSM.spam_score(self.description) * 2 score += diary_entry_score / self.diary_entries.length if self.diary_entries.length > 0 score += diary_comment_score / self.diary_comments.length if self.diary_comments.length > 0 score -= changeset_score score -= trace_score - return score + return score.to_i end end