diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-12 13:46:50 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-12 13:46:50 +0200 |
commit | 37d286fc7ce8feec72d9ecf5d238a42c873de1d0 (patch) | |
tree | 9e1540bf674feb2da090d8ae7ee5b1ed4c1b29a4 /youtube/local_playlist.py | |
parent | 7d7b072a5b588ecb897a9283ca0ca7ac90736af0 (diff) | |
download | yt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.tar.lz yt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.tar.xz yt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.zip |
put the slash back
Diffstat (limited to 'youtube/local_playlist.py')
-rw-r--r-- | youtube/local_playlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/local_playlist.py b/youtube/local_playlist.py index 394e7db..891bb76 100644 --- a/youtube/local_playlist.py +++ b/youtube/local_playlist.py @@ -52,7 +52,7 @@ def get_local_playlist_videos(name, offset=0, amount=50): try: info = json.loads(video_json) if info['id'] + ".jpg" in thumbnails: - info['thumbnail'] = "https://youtube.com/data/playlist_thumbnails/" + name + "/" + info['id'] + ".jpg" + info['thumbnail'] = "/https://youtube.com/data/playlist_thumbnails/" + name + "/" + info['id'] + ".jpg" else: info['thumbnail'] = util.get_thumbnail_url(info['id']) missing_thumbnails.append(info['id']) |