Update NewPipeExtractor for hotfix release

This commit is contained in:
Stypox 2022-04-15 10:54:31 +02:00
parent 0bf4d33774
commit 272d41a13f
5 changed files with 5 additions and 5 deletions

View file

@ -132,7 +132,7 @@ public class DownloadMissionRecover extends Thread {
switch (mRecovery.getKind()) {
case 'a':
for (AudioStream audio : mExtractor.getAudioStreams()) {
if (audio.average_bitrate == mRecovery.getDesiredBitrate() && audio.getFormat() == mRecovery.getFormat()) {
if (audio.getAverageBitrate() == mRecovery.getDesiredBitrate() && audio.getFormat() == mRecovery.getFormat()) {
url = audio.getUrl();
break;
}