aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@kodi.tv>2015-07-15 00:11:51 +0200
committermontellese <montellese@xbmc.org>2015-07-17 08:22:45 +0200
commit8c03461683b524c93d5f2a87729777f667700491 (patch)
tree15f7e78b8b54136e64d052b8db9da6c4483c9d2f
parenteb4467a019f2ddf32b954c60e97b4ceb6e84d53d (diff)
fix musicvideo artist artwork not being loaded from the musicdb (fixes #16120)
-rw-r--r--xbmc/video/VideoThumbLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/video/VideoThumbLoader.cpp b/xbmc/video/VideoThumbLoader.cpp
index 503f75246e..02b3e075c6 100644
--- a/xbmc/video/VideoThumbLoader.cpp
+++ b/xbmc/video/VideoThumbLoader.cpp
@@ -434,7 +434,7 @@ bool CVideoThumbLoader::FillLibraryArt(CFileItem &item)
m_videoDatabase->Open();
if (m_videoDatabase->GetArtForItem(tag.m_iDbId, tag.m_type, artwork))
SetArt(item, artwork);
- else if (tag.m_type == MediaTypeArtist)
+ else if (tag.m_type == "actor" && !tag.m_artist.empty())
{ // we retrieve music video art from the music database (no backward compat)
CMusicDatabase database;
database.Open();