From: Ilkka Ollakka Date: Wed, 22 Aug 2007 16:39:52 +0000 (+0000) Subject: art search with artist + album could be littlebit better X-Git-Tag: 0.9.0-test0~6238 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b1bdd6a1647315fbfa6f80e7ee58b45f887bf6fa;p=vlc art search with artist + album could be littlebit better --- diff --git a/share/luameta/googleimage.lua b/share/luameta/googleimage.lua index 3d50dead95..f3d565f8af 100644 --- a/share/luameta/googleimage.lua +++ b/share/luameta/googleimage.lua @@ -11,7 +11,9 @@ end -- Return the artwork function fetch_art() - if vlc.title and vlc.artist then + if vlc.artist and vlc.album then + title = vlc.artist.." "..vlc.album + elseif vlc.title and vlc.artist then title = vlc.artist.." "..vlc.title elseif vlc.title then title = vlc.title