make the length limit a bit larger
This commit is contained in:
parent
241c7292e7
commit
93d89a31e2
1 changed files with 1 additions and 1 deletions
2
fun.go
2
fun.go
|
@ -84,7 +84,7 @@ func reverbolate(userid int64, honks []*Honk) {
|
|||
h.Precis = ""
|
||||
}
|
||||
}
|
||||
if len(h.Noise) > 4000 && h.Open == "open" {
|
||||
if len(h.Noise) > 6000 && h.Open == "open" {
|
||||
if h.Precis == "" {
|
||||
h.Precis = "really freaking long"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue