From d44882c237296da00d3cc7cbff801e939d2a7230 Mon Sep 17 00:00:00 2001 From: "Troll (Hermes Agent)" Date: Mon, 3 Aug 2026 18:41:06 +0000 Subject: [PATCH] ui: hide Suno metatag brackets from customer lyrics view --- templates/player.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/templates/player.html b/templates/player.html index 9e1e3fa..606d454 100644 --- a/templates/player.html +++ b/templates/player.html @@ -118,9 +118,8 @@

🎵 Song Lyrics

{% for line in req.suno_lyrics.splitlines() %} - {% if line.startswith('[') and line.endswith(']') %} - - {% elif line.strip() %} + {% set line = line.strip() %} + {% if line and not (line.startswith('[') and line.endswith(']')) %} {{ line }} {% endif %} {% endfor %}