From d806263b4c38d3a96258c3d14e8d1327e0372b52 Mon Sep 17 00:00:00 2001 From: redvers76 Date: Tue, 30 Aug 2011 16:54:00 +0200 Subject: [PATCH] In lieu of a full artist-by-artist control panel to determine which extras to include, have added m.Release.TYPE_SOUNDTRACK as this seems to be the only major ommission --- headphones/mb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/mb.py b/headphones/mb.py index 21f0aa09..9afe0ef2 100644 --- a/headphones/mb.py +++ b/headphones/mb.py @@ -170,7 +170,7 @@ def getArtist(artistid, extrasonly=False): includeExtras = False if includeExtras or headphones.INCLUDE_EXTRAS: - includes = [m.Release.TYPE_COMPILATION, m.Release.TYPE_REMIX, m.Release.TYPE_SINGLE, m.Release.TYPE_LIVE, m.Release.TYPE_EP] + includes = [m.Release.TYPE_COMPILATION, m.Release.TYPE_REMIX, m.Release.TYPE_SINGLE, m.Release.TYPE_LIVE, m.Release.TYPE_EP, m.Release.TYPE_SOUNDTRACK] for include in includes: inc = ws.ArtistIncludes(releases=(m.Release.TYPE_OFFICIAL, include), releaseGroups=True)