Skip to content

Commit

Permalink
Consistently exclude hidden diaries from spam scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Mar 12, 2024
1 parent 7e672b7 commit d56322a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -360,9 +360,9 @@ def spam_score
diary_comment_score = diary_comments.visible.inject(0) { |acc, elem| acc + elem.body.spam_score }

score = description.spam_score / 4.0
score += diary_entries.where("created_at > ?", 1.day.ago).count * 10
score += diary_entry_score / diary_entries.length unless diary_entries.empty?
score += diary_comment_score / diary_comments.length unless diary_comments.empty?
score += diary_entries.visible.where("created_at > ?", 1.day.ago).count * 10
score += diary_entry_score / diary_entries.visible.length unless diary_entries.visible.empty?
score += diary_comment_score / diary_comments.visible.length unless diary_comments.visible.empty?
score -= changeset_score
score -= trace_score

Expand Down

0 comments on commit d56322a

Please sign in to comment.