bump max fetch size
Ted Unangst tedu@tedunangst.com
Sun, 04 Feb 2024 18:48:52 -0500
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
activity.go
→
activity.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 }