aboutsummaryrefslogtreecommitdiff
path: root/emms-browser.el
diff options
context:
space:
mode:
Diffstat (limited to 'emms-browser.el')
-rw-r--r--emms-browser.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/emms-browser.el b/emms-browser.el
index 9b7c9db..9c9ca31 100644
--- a/emms-browser.el
+++ b/emms-browser.el
@@ -484,6 +484,10 @@ Items with no metadata for TYPE will be placed in 'misc'"
(let (db key existing)
(dolist (track tracks)
(setq key (emms-track-get track type "misc"))
+ (when (eq type 'info-title)
+ ;; try and make every track unique
+ (setq key (concat (emms-browser-track-number track)
+ key)))
(setq existing (assoc key db))
(if existing
(setcdr existing (cons track (cdr existing)))