forked from recloudstream/cloudstream
removed a println
This commit is contained in:
parent
bbe56aeea7
commit
11f16ad510
1 changed files with 2 additions and 2 deletions
|
@ -5,6 +5,7 @@ import java.util.*
|
||||||
import javax.crypto.Cipher
|
import javax.crypto.Cipher
|
||||||
import javax.crypto.spec.IvParameterSpec
|
import javax.crypto.spec.IvParameterSpec
|
||||||
import javax.crypto.spec.SecretKeySpec
|
import javax.crypto.spec.SecretKeySpec
|
||||||
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
|
|
||||||
|
|
||||||
class M3u8Helper {
|
class M3u8Helper {
|
||||||
|
@ -153,7 +154,6 @@ class M3u8Helper {
|
||||||
}
|
}
|
||||||
|
|
||||||
encryptionIv = match.component3().toByteArray()
|
encryptionIv = match.component3().toByteArray()
|
||||||
println("$encryptionUri, $headers")
|
|
||||||
val encryptionKeyResponse = khttp.get(encryptionUri, headers=headers)
|
val encryptionKeyResponse = khttp.get(encryptionUri, headers=headers)
|
||||||
encryptionData = encryptionKeyResponse.content
|
encryptionData = encryptionKeyResponse.content
|
||||||
}
|
}
|
||||||
|
@ -188,7 +188,7 @@ class M3u8Helper {
|
||||||
yield(HlsDownloadData(tsData, c, totalTs))
|
yield(HlsDownloadData(tsData, c, totalTs))
|
||||||
lastYield = c
|
lastYield = c
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
logError(e)
|
||||||
if (retries == 3) {
|
if (retries == 3) {
|
||||||
yield(HlsDownloadData(byteArrayOf(), c, totalTs, true))
|
yield(HlsDownloadData(byteArrayOf(), c, totalTs, true))
|
||||||
break@loop
|
break@loop
|
||||||
|
|
Loading…
Reference in a new issue