I assumed that Readable.readable was synonymous with the readable event, which is emitted when there is data to be read from the stream. Instead, Readable.readable actually means that the stream has not been destroyed or emitted 'error' or 'end'.
AudioPlayer should be updated to check for this properly.
I assumed that
Readable.readable
was synonymous with thereadable
event, which is emitted when there is data to be read from the stream. Instead,Readable.readable
actually means that the stream has not been destroyed or emitted 'error' or 'end'.AudioPlayer
should be updated to check for this properly.