From e206a7fbf3f2ed5f63e5f888d5f35edf0607eb63 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sat, 14 Jan 2023 10:37:38 -0500 Subject: [PATCH] Fix display of TV episode and season on homepage --- vrobbler/templates/scrobbles/scrobble_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/templates/scrobbles/scrobble_list.html b/vrobbler/templates/scrobbles/scrobble_list.html index 24b138e..2df45fb 100644 --- a/vrobbler/templates/scrobbles/scrobble_list.html +++ b/vrobbler/templates/scrobbles/scrobble_list.html @@ -138,7 +138,7 @@ {% for scrobble in video_scrobble_list %} {{scrobble.timestamp|naturaltime}} - {% if scrobble.video.tv_series %}E{{scrobble.video.season_number}}S{{scrobble.video.season_number}} -{% endif %} {{scrobble.video.title}} + {% if scrobble.video.tv_series %}S{{scrobble.video.season_number}}E{{scrobble.video.episode_number}} -{% endif %} {{scrobble.video.title}} {% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %} {% endfor %}