Closed fasterthanlime closed 8 years ago
cf. #28
turns out the io.Reader interface of golang doesn't require the entire input buffer, which simplifies our logic and makes it all work!
Ah, so we were trying to fill the input buffer completely, which was probably corrupting the stream with partial blocks or something like that. Thanks for sorting that out! :+1:
cf. #28
turns out the io.Reader interface of golang doesn't require the entire input buffer, which simplifies our logic and makes it all work!