diff --git a/connection.go b/connection.go index fe60386..d31ac1c 100644 --- a/connection.go +++ b/connection.go @@ -22,7 +22,7 @@ func NewConnection(ctx context.Context, url string, requestHeader http.Header, t return nil, err } - c.SetReadLimit(262144) // this should be enough for contact lists of over 2000 people + c.SetReadLimit(2 << 24) // 33MB return &Connection{ conn: c,