Fix VoiceConnection.playConvertedStream not playing anything (#708)

This commit is contained in:
Matteo Rizzo 2016-09-21 05:01:02 +02:00 committed by Schuyler Cebulskie
parent 8bcb670920
commit f383c78414

View file

@ -255,7 +255,7 @@ class VoiceConnection extends EventEmitter {
*/
playConvertedStream(stream, { seek = 0, volume = 1, passes = 1 } = {}) {
const options = { seek, volume, passes };
this._shutdown();
this.player._shutdown();
const dispatcher = this.player.playPCMStream(stream, options);
return dispatcher;
}