]> git.sesse.net Git - vlc/commitdiff
Removing tabs from previous commits.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 22 Feb 2010 22:26:59 +0000 (23:26 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 22 Feb 2010 22:27:25 +0000 (23:27 +0100)
share/lua/meta/art/10_googleimage.lua

index 9d0016471547e16717be35b45ab4954c8bb4c107..e123060c1cb11098c88a7fb32f983910183c37f8 100644 (file)
@@ -29,11 +29,12 @@ end
 
 -- Return the artwork
 function fetch_art()
-       -- This is disabled because we have too much false positive by the inherent nature of this script.
-       if true then vlc.msg.dbg("10_googleimage.lua is disabled") return nil end
+    -- This is disabled because we have too much false positive by the inherent nature of this script.
+    if true then vlc.msg.dbg("10_googleimage.lua is disabled") return nil end
 
-       if vlc.input == nil then return nil end
-       local item = vlc.input.item()
+    if vlc.input == nil then return nil end
+
+    local item = vlc.input.item()
     local meta = item:metas()
     if meta["artist"] and meta["album"] then
         title = meta["artist"].." "..meta["album"]