all repos — honk @ 66cd194138a46f79931c870a7fe8f055a4d0028e

my fork of honk

bump max fetch size
Ted Unangst tedu@tedunangst.com
Sun, 04 Feb 2024 18:48:52 -0500
commit

66cd194138a46f79931c870a7fe8f055a4d0028e

parent

238ef74c8563d9f7edd10b4ade85edd259c67d1e

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

jump to
M activity.goactivity.go

@@ -217,7 +217,7 @@ default:

return nil, fmt.Errorf("http get not 200: %d %s", resp.StatusCode, url) } var buf bytes.Buffer - limiter := io.LimitReader(resp.Body, 10*1024*1024) + limiter := io.LimitReader(resp.Body, 14*1024*1024) io.Copy(&buf, limiter) return buf.Bytes(), nil }