diff options
-rw-r--r-- | lib/media/jao-mpris.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/media/jao-mpris.el b/lib/media/jao-mpris.el index fe89865..06f704f 100644 --- a/lib/media/jao-mpris.el +++ b/lib/media/jao-mpris.el @@ -87,8 +87,8 @@ ((numberp len) (jao-mpris--fmt-time (/ len 1e6) ""))))) (format " %s %s %s%s%s" (jao--put-face (format "%s" (or track "")) 'jao-themes-f00) - (jao--put-face title 'jao-themes-f01) - (jao--put-face artist 'jao-themes-f11) + (jao--put-face (or title "") 'jao-themes-f01) + (jao--put-face (or artist "") 'jao-themes-f11) (jao--put-face (if album (format " (%s)" album) "") 'jao-themes-f01) (if duration (format " %s" duration) "")))) |