修复加密的m3u8下载,并且使用索引模式时,key的uri没有使用双引号的问题 https://github.com/AriaLyy/Aria/issues/731

修复删除m3u8索引文件后,下载完成回调无法触发的问题
This commit is contained in:
laoyuyu
2020-08-14 22:17:13 +08:00
parent 07a1f45f1e
commit 428fbab9d2
7 changed files with 46 additions and 29 deletions

View File

@@ -141,7 +141,7 @@ final public class M3U8InfoTask implements IInfoTask {
}
fos = new FileOutputStream(indexFile);
ALog.d(TAG, line);
addIndexInfo(isGenerateIndexFile, fos, line);
addIndexInfo(true, fos, line);
}
while ((line = reader.readLine()) != null) {
if (isStop) {