From 84b9f6f6bcafdf10acefc61ef43ef6cef430b7f5 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Mon, 20 Jun 2022 18:05:28 -0400 Subject: [PATCH] Bugfix for unable [ERR] {TITLE} parse ts urls failed See issue: #872 Tested and verified this change works locally. --- TIDALDL-PY/tidal_dl/tidal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TIDALDL-PY/tidal_dl/tidal.py b/TIDALDL-PY/tidal_dl/tidal.py index 4c05d85..b12e63b 100644 --- a/TIDALDL-PY/tidal_dl/tidal.py +++ b/TIDALDL-PY/tidal_dl/tidal.py @@ -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: