Merge pull request #924 from RandomNinjaAtk/patch-1

Bugfix for unable [ERR] {TITLE} parse ts urls failed
This commit is contained in:
Yaronzz
2022-06-21 15:22:42 +08:00
committed by GitHub
+1 -1
View File
@@ -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: