diff options
author | the-black-eagle <g.moore@gmx.co.uk> | 2024-02-09 13:49:51 +0000 |
---|---|---|
committer | the-black-eagle <g.moore@gmx.co.uk> | 2024-02-09 13:49:51 +0000 |
commit | 73e8515b348b5c257f2f4aea90a4ea7eba57fb84 (patch) | |
tree | e20b49be7510ae5ff7b1973ebbe6de200c05e2d7 | |
parent | 264b44decda328f9308964c86242f0a9997387bc (diff) |
[MUSIC] Only set libraryartfilled property if we actually found art
-rw-r--r-- | xbmc/music/MusicThumbLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/music/MusicThumbLoader.cpp b/xbmc/music/MusicThumbLoader.cpp index a2da0ef6f5..fc19784871 100644 --- a/xbmc/music/MusicThumbLoader.cpp +++ b/xbmc/music/MusicThumbLoader.cpp @@ -366,8 +366,8 @@ bool CMusicThumbLoader::FillLibraryArt(CFileItem &item) } item.AppendArt(artmap); + item.SetProperty("libraryartfilled", true); } - item.SetProperty("libraryartfilled", true); return artfound; } |