Commit b1bdd6a1 authored by Ilkka Ollakka's avatar Ilkka Ollakka

art search with artist + album could be littlebit better

parent 4c6590b9
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment