Fix auto translate search function

This commit is contained in:
Max Isom 2020-10-24 13:11:29 -04:00
parent 7a2cdc20de
commit e103282cd7
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
2 changed files with 6 additions and 15 deletions

View file

@ -83,7 +83,7 @@ export default class {
}
const stream = await this.getStream(currentSong.url, {seek: positionSeconds});
this.dispatcher = this.voiceConnection.play(stream, {type: 'webm/opus'});
this.dispatcher = this.voiceConnection.play(stream, {type: 'webm/opus', bitrate: 'auto'});
this.attachListeners();
this.startTrackingPosition(positionSeconds);