mirror of
https://github.com/yaronzz/Tidal-Media-Downloader.git
synced 2026-01-16 16:04:25 -05:00
Bugfix for unable [ERR] {TITLE} parse ts urls failed
See issue: #872 Tested and verified this change works locally.
This commit is contained in:
@@ -135,7 +135,7 @@ class TidalAPI(object):
|
||||
|
||||
def __getResolutionList__(self, url):
|
||||
ret = []
|
||||
txt = requests.get(url).text
|
||||
txt = requests.get(url).content.decode('utf-8')
|
||||
# array = txt.split("#EXT-X-STREAM-INF")
|
||||
array = txt.split("#")
|
||||
for item in array:
|
||||
|
||||
Reference in New Issue
Block a user