diff options
Diffstat (limited to 'media')
| -rw-r--r-- | media/espotify.org | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/media/espotify.org b/media/espotify.org index 99168a8..c52d08e 100644 --- a/media/espotify.org +++ b/media/espotify.org @@ -278,7 +278,7 @@ Let's start with an umbrella customization group:      (defun espotify--search-generator (type filter)        (thread-first (consult--async-sink)          (consult--async-refresh-timer) -        (consult-async--map #'espotify--format-item) +        (consult--async-map #'espotify--format-item)          (espotify--async-search type filter)          (consult--async-throttle)          (consult--async-split))) @@ -317,7 +317,8 @@ Let's start with an umbrella customization group:        (propertize (format "%s%s"                            (alist-get 'name x)                            (if-let ((a (alist-get 'album x))) -                              (format " (%s)" (alist-get 'name a)))) +                              (format " (%s)" (alist-get 'name a)) +                            ""))                    'espotify-item x))      (defun espotify--item (cand)  | 
