Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle HTTP chunking across multi-byte boundaries
When a response contains multi-byte UTF-8 characters that cross chunk boundaries, appending the two halves to the intermediate string results in two Unicode Replacement Characters being inserted instead of the two halves being joined. Use StringDecoder to buffer the partial characters across chunks. Resolves #22
- Loading branch information