From 8a0b33c1e81002b3687c7a7f5d677231dca1a842 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 22 Jun 2021 10:21:53 +1000 Subject: [PATCH] Re #42 - dont use blank titles --- backend/templates/watch-overview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/templates/watch-overview.html b/backend/templates/watch-overview.html index 85e245429..11d3776a8 100644 --- a/backend/templates/watch-overview.html +++ b/backend/templates/watch-overview.html @@ -46,7 +46,7 @@ {% if watch.newest_history_key| int > watch.last_viewed| int %}unviewed{% endif %}"> {{ loop.index }} Pause - {{watch.title if watch.title is not none else watch.url}} + {{watch.title if watch.title is not none and watch.title|length > 0 else watch.url}} {% if watch.last_error is defined and watch.last_error != False %}
{{ watch.last_error }}