Use SubtitlesStream#getUrl instead of getURL

This commit is contained in:
mhmdanas 2020-08-12 22:21:09 +03:00
parent 8a1a42e83b
commit e5ffddfc6b
3 changed files with 3 additions and 3 deletions

View file

@ -155,7 +155,7 @@ public class DownloadMissionRecover extends Thread {
for (SubtitlesStream subtitles : mExtractor.getSubtitles(mRecovery.format)) {
String tag = subtitles.getLanguageTag();
if (tag.equals(mRecovery.desired) && subtitles.isAutoGenerated() == mRecovery.desired2) {
url = subtitles.getURL();
url = subtitles.getUrl();
break;
}
}