party-upload: fix artist links master
authorClinton Ebadi <clinton@unknownlamer.org>
Sat, 12 Feb 2022 19:51:09 +0000 (14:51 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Sat, 12 Feb 2022 19:51:09 +0000 (14:51 -0500)
party-upload/partyparty.py

index 377e998..e225834 100644 (file)
@@ -203,7 +203,7 @@ class Playlist:
             with tag ('li'):
                with tag ('div', klass = 'flex_row'):
                   with tag ('p'):
-                     with tag ('a', href = '{1}?searchgo=1&amp;searchterm={0};searchfield=artist'.format(song.artist, PAGE_SELF)):
+                     with tag ('a', href = '{1}?searchgo=1&searchterm={0}&searchfield=artist'.format(song.artist, PAGE_SELF)):
                         text (song.artist)
                      text (' ({}) {}'.format(song.album, song.label))
                   doc.asis (SongControls (song, controls).controls())