aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-31 07:56:18 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-31 07:56:18 +0700
commitcf03e34ad3cd42997da92b49412d98d06ea82681 (patch)
tree9786fff85824abbdabd0f79396d469203e99185a
parent2903137292721afc50c1f3a97c677cea1bc2d07b (diff)
downloadyoutube-dl-cf03e34ad3cd42997da92b49412d98d06ea82681.tar.xz
[yandexmusic:track] Fix extraction (Closes #10193)
-rw-r--r--youtube_dl/extractor/yandexmusic.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/yandexmusic.py b/youtube_dl/extractor/yandexmusic.py
index b37d0eab6..fd6268ba4 100644
--- a/youtube_dl/extractor/yandexmusic.py
+++ b/youtube_dl/extractor/yandexmusic.py
@@ -75,6 +75,12 @@ class YandexMusicTrackIE(YandexMusicBaseIE):
% storage_dir,
track_id, 'Downloading track location JSON')
+ # Each string is now wrapped in a list, this is probably only temporarily thus
+ # supporting both scenarios (see https://github.com/rg3/youtube-dl/issues/10193)
+ for k, v in data.items():
+ if v and isinstance(v, list):
+ data[k] = v[0]
+
key = hashlib.md5(('XGRlBW9FXlekgbPrRHuSiA' + data['path'][1:] + data['s']).encode('utf-8')).hexdigest()
storage = storage_dir.split('.')