make the length limit a bit larger

This commit is contained in:
Ted Unangst 2019-10-05 13:53:41 -04:00
parent 241c7292e7
commit 93d89a31e2
1 changed files with 1 additions and 1 deletions

2
fun.go
View File

@ -84,7 +84,7 @@ func reverbolate(userid int64, honks []*Honk) {
h.Precis = "" h.Precis = ""
} }
} }
if len(h.Noise) > 4000 && h.Open == "open" { if len(h.Noise) > 6000 && h.Open == "open" {
if h.Precis == "" { if h.Precis == "" {
h.Precis = "really freaking long" h.Precis = "really freaking long"
} }