diff options
author | jenkins4kodi <jenkins4kodi@users.noreply.github.com> | 2015-07-17 17:26:40 +0200 |
---|---|---|
committer | jenkins4kodi <jenkins4kodi@users.noreply.github.com> | 2015-07-17 17:26:40 +0200 |
commit | 10122c7f6daea8186ab935f87297feb52a5aaade (patch) | |
tree | a1bec62b3151754a215bcdba90cf63352aee8b8e | |
parent | 3dd4ad4c87f4cfdc0a5a814f87ee0c3fff90758f (diff) | |
parent | 8c03461683b524c93d5f2a87729777f667700491 (diff) |
Merge pull request #7531 from Montellese/Isengard_fix_musicvideo_artist_artwork
-rw-r--r-- | xbmc/video/VideoThumbLoader.cpp | 2 |
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(); |