mirror of
https://github.com/yaronzz/Tidal-Media-Downloader.git
synced 2026-06-13 04:05:07 +03:00
Merge pull request #924 from RandomNinjaAtk/patch-1
Bugfix for unable [ERR] {TITLE} parse ts urls failed
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