From 93d89a31e2a931c8d4ffb92fbc4866a601d0a3be Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Sat, 5 Oct 2019 13:53:41 -0400 Subject: [PATCH] make the length limit a bit larger --- fun.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fun.go b/fun.go index 9f303c1..265229f 100644 --- a/fun.go +++ b/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" }