Browse Source

increases fraud sensitivity

master
Christian Müller 8 years ago
parent
commit
20daaa82ce
  1. 2
      storage.go

2
storage.go

@ -46,7 +46,7 @@ func (n *Note) Fraud() bool {
stripped := rexpLink.ReplaceAllString(n.Text, "") stripped := rexpLink.ReplaceAllString(n.Text, "")
l1 := len(n.Text) l1 := len(n.Text)
l2 := len(stripped) l2 := len(stripped)
return n.Views > 30 && return n.Views > 150 &&
int(math.Ceil(100*float64(l1-l2)/float64(l1))) > fraudThreshold int(math.Ceil(100*float64(l1-l2)/float64(l1))) > fraudThreshold
} }

Loading…
Cancel
Save