mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
fix: handle "?" as an empty song description
that's what the API returns
This commit is contained in:
parent
119843dad7
commit
74b6f943fc
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ templ LyricsPage(s data.Song) {
|
||||||
@templ.Raw(s.Lyrics)
|
@templ.Raw(s.Lyrics)
|
||||||
</div>
|
</div>
|
||||||
<div id="info">
|
<div id="info">
|
||||||
if s.About[0] != "" {
|
if s.About[0] != "?" {
|
||||||
<div id="about">
|
<div id="about">
|
||||||
<h1 id="title">About</h1>
|
<h1 id="title">About</h1>
|
||||||
<p class="hidden" id="full_about">{ s.About[0] }</p>
|
<p class="hidden" id="full_about">{ s.About[0] }</p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue