Skip to content

Commit afc3312

Browse files
authored
fix: mediaplayer.py artist_track_separator refers to undefined var (#723)
1 parent 7b55b0e commit afc3312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Configs/.local/lib/hyde/mediaplayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def format_artist_track(artist, track, playing, max_length):
9696
track = track[:track_limit].rstrip() + "…"
9797

9898
output_text = (
99-
f"{prefix}{prefix_separator}<i>{artist}</i>{separator}<b>{track}</b>"
99+
f"{prefix}{prefix_separator}<i>{artist}</i>{artist_track_separator}<b>{track}</b>"
100100
)
101101
else:
102102
output_text = "<b>Nothing playing</b>"

0 commit comments

Comments
 (0)