Allow readerA.pull to return an actual result

This commit is contained in:
Sasha Koshka 2025-04-25 14:15:53 -04:00
parent 46c6361602
commit cbaff8b593

View File

@ -236,6 +236,7 @@ func (this *readerA) pull() (uint16, error) {
if !message.chunked { if !message.chunked {
this.eof = true this.eof = true
} }
return message.method, nil
} }
} }
} }