diff options
author | Jesus E <heckyel@riseup.net> | 2023-05-28 21:04:36 -0400 |
---|---|---|
committer | Jesus E <heckyel@riseup.net> | 2023-05-28 21:04:36 -0400 |
commit | 68752000f0213f801a7c5e8127b77afeba644f7d (patch) | |
tree | b86637952fdd892bd41bc2f8de922116b6996c6d /youtube/templates | |
parent | 7b60751e997137f1ce53b94b1a89e9d3dc03c729 (diff) | |
download | yt-local-68752000f0213f801a7c5e8127b77afeba644f7d.tar.lz yt-local-68752000f0213f801a7c5e8127b77afeba644f7d.tar.xz yt-local-68752000f0213f801a7c5e8127b77afeba644f7d.zip |
Update channel to new ctoken format
Huge thanks to @michaelweiser
Different sortings still don't work for videos and playlists
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/channel.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/channel.html b/youtube/templates/channel.html index 5a567c0..6266aab 100644 --- a/youtube/templates/channel.html +++ b/youtube/templates/channel.html @@ -1,7 +1,7 @@ {% if current_tab == 'search' %} {% set page_title = search_box_value + ' - Page ' + page_number|string %} {% else %} - {% set page_title = channel_name + ' - Channel' %} + {% set page_title = channel_name|string + ' - Channel' %} {% endif %} {% extends "base.html" %} |