From 5c255fb34be63624db09280a09d1033c462928b3 Mon Sep 17 00:00:00 2001 From: ari melody Date: Fri, 31 Jul 2026 02:41:39 +0100 Subject: [PATCH] fix track description display on single release --- templates/html/music-gateway.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/html/music-gateway.html b/templates/html/music-gateway.html index 9ad212e..19049e8 100644 --- a/templates/html/music-gateway.html +++ b/templates/html/music-gateway.html @@ -83,10 +83,11 @@ {{else if .IsSingle}} - {{index .Tracks 0}} + {{with index .Tracks 0}} {{if .Description}}

{{.Description}}

{{end}} + {{end}} {{end}}