From 40acbffce2d0a5341651df3495b1ccdf4832420f Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 17 May 2018 18:22:25 +0200 Subject: * lisp/emms-browser.el: Prioritize albumartist and artist over the sort tags --- lisp/emms-browser.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lisp') diff --git a/lisp/emms-browser.el b/lisp/emms-browser.el index b381870..3eaca92 100644 --- a/lisp/emms-browser.el +++ b/lisp/emms-browser.el @@ -660,10 +660,10 @@ For 'info-artist TYPE, use 'info-albumartistsort, 'info-albumartist, For 'info-year TYPE, use 'info-originalyear, 'info-originaldate and 'info-date symbols." (cond ((eq type 'info-artist) - (or (emms-track-get track 'info-albumartistsort) - (emms-track-get track 'info-albumartist) - (emms-track-get track 'info-artistsort) - (emms-track-get track 'info-artist ""))) + (or (emms-track-get track 'info-albumartist) + (emms-track-get track 'info-albumartistsort) + (emms-track-get track 'info-artist) + (emms-track-get track 'info-artistsort ""))) ((eq type 'info-year) (let ((date (or (emms-track-get track 'info-originaldate) (emms-track-get track 'info-originalyear) -- cgit v1.2.3