diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-09-07 18:26:31 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-09-07 18:26:31 -0700 |
commit | 93bbe1179be844b21387168dc8fb62b878ee1f7d (patch) | |
tree | 806e3be7e3c0bd3c1fa1898362d1c15b1e285aeb /youtube | |
parent | 7b42d26c6112adfbabfa580ac58ad9f119b68cb6 (diff) | |
download | yt-local-93bbe1179be844b21387168dc8fb62b878ee1f7d.tar.lz yt-local-93bbe1179be844b21387168dc8fb62b878ee1f7d.tar.xz yt-local-93bbe1179be844b21387168dc8fb62b878ee1f7d.zip |
Subscriptions: fix author not being included
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/templates/subscriptions.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html index 370ca23..5c31e92 100644 --- a/youtube/templates/subscriptions.html +++ b/youtube/templates/subscriptions.html @@ -47,7 +47,7 @@ <div class="video-section"> <nav class="item-grid"> {% for video_info in videos %} - {{ common_elements.item(video_info, include_author=false) }} + {{ common_elements.item(video_info) }} {% endfor %} </nav> |