make the length limit a bit larger
This commit is contained in:
parent
241c7292e7
commit
93d89a31e2
2
fun.go
2
fun.go
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue