From 2cb26beaf7cd59f89fa311043f9dd04238be48f0 Mon Sep 17 00:00:00 2001 From: stephendenham Date: Fri, 28 Jan 2011 09:56:16 +0000 Subject: [PATCH] Fix track labels on next pages. git-svn-id: svn://svn.code.sf.net/p/xbmc-groove/code@45 2dec19e3-eb1d-4749-8193-008c8bba0994 --- default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.py b/default.py index d44a236..5250150 100644 --- a/default.py +++ b/default.py @@ -392,7 +392,7 @@ class Groveshark: # Make a song directory item def songItem(self, songid, name, album, artist, coverart, trackLabelFormat=ARTIST_ALBUM_NAME_LABEL): songImg = self._get_icon(coverart, 'song-' + str(songid) + "-image") - if trackLabelFormat == NAME_ALBUM_ARTIST_LABEL: + if int(trackLabelFormat) == NAME_ALBUM_ARTIST_LABEL: trackLabel = name + " - " + album + " - " + artist else: trackLabel = artist + " - " + album + " - " + name -- 2.20.1