From 014da8d3ae842d217e67c1d11d19984187b96258 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sun, 15 Sep 2019 15:15:23 -0700 Subject: Fix list of local playlists not being given on subscriptions page and local playlist page --- youtube/local_playlist.py | 1 + 1 file changed, 1 insertion(+) (limited to 'youtube/local_playlist.py') diff --git a/youtube/local_playlist.py b/youtube/local_playlist.py index 2375ba2..cc6132a 100644 --- a/youtube/local_playlist.py +++ b/youtube/local_playlist.py @@ -110,6 +110,7 @@ def get_local_playlist_page(playlist_name=None): offset = 50*(page - 1) videos, num_videos = get_local_playlist_videos(playlist_name, offset=offset, amount=50) return flask.render_template('local_playlist.html', + header_playlist_names = get_playlist_names(), playlist_name = playlist_name, videos = videos, num_pages = math.ceil(num_videos/50), -- cgit v1.2.3