20 is a better limit for handles
This commit is contained in:
parent
059540e3a7
commit
0f564e2cce
4
fun.go
4
fun.go
|
@ -42,8 +42,8 @@ func reverbolate(honks []*Honk) {
|
||||||
} else {
|
} else {
|
||||||
_, h.Handle = honkerhandle(h.Honker)
|
_, h.Handle = honkerhandle(h.Honker)
|
||||||
h.Username = h.Handle
|
h.Username = h.Handle
|
||||||
if len(h.Username) > 40 {
|
if len(h.Username) > 20 {
|
||||||
h.Username = h.Username[:40] + ".."
|
h.Username = h.Username[:20] + ".."
|
||||||
}
|
}
|
||||||
if h.URL == "" {
|
if h.URL == "" {
|
||||||
h.URL = h.XID
|
h.URL = h.XID
|
||||||
|
|
Loading…
Reference in New Issue