mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2024-12-28 02:16:08 +00:00
Fixed lib not decrypting tracks
This commit is contained in:
parent
6d9b535020
commit
772087cc45
|
@ -38,7 +38,7 @@ async function streamTrack(outputStream, track, start=0, downloadObject, listene
|
|||
let headers = {'User-Agent': USER_AGENT_HEADER}
|
||||
let chunkLength = start
|
||||
let complete = 0
|
||||
let isCryptedStream = track.downloadURL.includes("/mobile/")
|
||||
let isCryptedStream = track.downloadURL.includes("/mobile/") || track.downloadURL.includes("/media/")
|
||||
let blowfishKey
|
||||
|
||||
let itemData = {
|
||||
|
|
Loading…
Reference in a new issue