diff --git a/TIDALDL-PY/tidal_dl/tidal.py b/TIDALDL-PY/tidal_dl/tidal.py index ec56b22..5f38c7d 100644 --- a/TIDALDL-PY/tidal_dl/tidal.py +++ b/TIDALDL-PY/tidal_dl/tidal.py @@ -269,7 +269,7 @@ class TidalAPI(object): tracks = [] videos = [] for item in data: - if item['type'] == 'track': + if item['type'] == 'track' and item['item']['streamReady']: tracks.append(aigpy.model.dictToModel(item['item'], Track())) else: videos.append(aigpy.model.dictToModel(item['item'], Video()))