all repos — honk @ 8b47d53f2687a02b63f6e8df47c4bd80010d73cd

my fork of honk

cut back on number of honks in mechanical endpoints
Ted Unangst tedu@tedunangst.com
Fri, 06 Sep 2019 18:40:50 -0400
commit

8b47d53f2687a02b63f6e8df47c4bd80010d73cd

parent

86fc0220d70975fac172e7d1d5eb430c9d742d32

1 files changed, 6 insertions(+), 0 deletions(-)

jump to
M honk.gohonk.go

@@ -248,6 +248,9 @@ honks = gethonksbyuser(name, false)

} else { honks = getpublichonks() } + if len(honks) > 20 { + honks = honks[0:20] + } reverbolate(-1, honks) home := fmt.Sprintf("https://%s/", serverName)

@@ -549,6 +552,9 @@ return

} honks := gethonksbyuser(name, false) + if len(honks) > 20 { + honks = honks[0:20] + } var jonks []junk.Junk for _, h := range honks {