From 42ce6df9bdf739fe690baf04aeb19f98ad2b9dc4 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 14 Oct 2025 10:58:54 -0400 Subject: [PATCH] [templates] Small fix to obj title missing --- vrobbler/templates/_scrobblable_list.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vrobbler/templates/_scrobblable_list.html b/vrobbler/templates/_scrobblable_list.html index c43d1a6..f9c529c 100644 --- a/vrobbler/templates/_scrobblable_list.html +++ b/vrobbler/templates/_scrobblable_list.html @@ -12,6 +12,7 @@ {% for obj in object_list %} + {% if obj.title %} {{obj.scrobble_set.last.local_timestamp}} {{obj}} @@ -20,6 +21,7 @@ Scrobble {% endif %} + {% endif %} {% endfor %}