diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-07-25 21:03:42 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-07-25 21:03:42 -0700 |
commit | a7ff3a52177e2fe03bb989f2959d1ce905f40109 (patch) | |
tree | 577298b2be1fd4a152ac78b5412152143c90ca97 /youtube/templates/playlist.html | |
parent | 9fc347e0932c71f9d9840fe9f5941225c8a8b6ee (diff) | |
download | yt-local-a7ff3a52177e2fe03bb989f2959d1ce905f40109.tar.lz yt-local-a7ff3a52177e2fe03bb989f2959d1ce905f40109.tar.xz yt-local-a7ff3a52177e2fe03bb989f2959d1ce905f40109.zip |
Playlist page: Fix error on failure to extract playlist title
Such as when the playlist was deleted or doesn't exist
Diffstat (limited to 'youtube/templates/playlist.html')
-rw-r--r-- | youtube/templates/playlist.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/playlist.html b/youtube/templates/playlist.html index ebd152b..f34f140 100644 --- a/youtube/templates/playlist.html +++ b/youtube/templates/playlist.html @@ -1,4 +1,4 @@ -{% set page_title = title + ' - Page ' + parameters_dictionary.get('page', '1') %} +{% set page_title = title|string + ' - Page ' + parameters_dictionary.get('page', '1') %} {% extends "base.html" %} {% import "common_elements.html" as common_elements %} {% block style %} |