mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
fixed arjix download m3u8 stuff again
This commit is contained in:
parent
a50cb9a08d
commit
444488849e
1 changed files with 2 additions and 3 deletions
|
@ -1153,7 +1153,7 @@ object VideoDownloadManager {
|
|||
Triple(
|
||||
id,
|
||||
bytesDownloaded,
|
||||
(bytesDownloaded / tsProgress) * totalTs
|
||||
(bytesDownloaded * (totalTs / tsProgress.toFloat())).toLong(),
|
||||
)
|
||||
)
|
||||
} catch (e: Exception) {
|
||||
|
@ -1165,7 +1165,7 @@ object VideoDownloadManager {
|
|||
CreateNotificationMetadata(
|
||||
type,
|
||||
bytesDownloaded,
|
||||
(bytesDownloaded / tsProgress) * totalTs
|
||||
(bytesDownloaded * (totalTs / tsProgress.toFloat())).toLong(),
|
||||
)
|
||||
)
|
||||
}
|
||||
|
@ -1253,7 +1253,6 @@ object VideoDownloadManager {
|
|||
deleteFile()
|
||||
updateNotification()
|
||||
closeAll()
|
||||
|
||||
}
|
||||
|
||||
for (ts in tsIterator) {
|
||||
|
|
Loading…
Reference in a new issue