aboutsummaryrefslogtreecommitdiffstats
path: root/youtube
diff options
context:
space:
mode:
authorzrose584 <57181548+zrose584@users.noreply.github.com>2020-10-12 13:46:50 +0200
committerzrose584 <57181548+zrose584@users.noreply.github.com>2020-10-12 13:46:50 +0200
commit37d286fc7ce8feec72d9ecf5d238a42c873de1d0 (patch)
tree9e1540bf674feb2da090d8ae7ee5b1ed4c1b29a4 /youtube
parent7d7b072a5b588ecb897a9283ca0ca7ac90736af0 (diff)
downloadyt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.tar.lz
yt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.tar.xz
yt-local-37d286fc7ce8feec72d9ecf5d238a42c873de1d0.zip
put the slash back
Diffstat (limited to 'youtube')
-rw-r--r--youtube/local_playlist.py2
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'])