fix playConvertedStream (#923)

This commit is contained in:
Will Nelson
2016-11-24 14:08:55 -08:00
committed by Schuyler Cebulskie
parent ac64f8bd23
commit eedc097f3f

View File

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