summaryrefslogtreecommitdiff
path: root/plugins/artwork/artwork.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-22 12:12:19 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-22 12:12:19 +0200
commitcacfeb0d9749074f6fd58fb58db3e8dcf7a2a139 (patch)
tree5a6e9f8c4fb6bbd9a7a28d6cd0f846bfafbd6b8a /plugins/artwork/artwork.c
parentc2ec43487c376f5e44db0b7513675c8788869f95 (diff)
coverart: prevent attempts to load partial files
Diffstat (limited to 'plugins/artwork/artwork.c')
-rw-r--r--plugins/artwork/artwork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/artwork/artwork.c b/plugins/artwork/artwork.c
index ef2d0e00..4af9658b 100644
--- a/plugins/artwork/artwork.c
+++ b/plugins/artwork/artwork.c
@@ -435,7 +435,7 @@ fetcher_thread (void *none)
char*
get_album_art (const char *fname, const char *artist, const char *album, artwork_callback callback, void *user_data)
{
-// trace ("get_album_art: %s (%s - %s)\n", fname, artist, album);
+ trace ("get_album_art: %s (%s - %s)\n", fname, artist, album);
char path [1024];
if (!album) {
@@ -470,7 +470,7 @@ get_album_art (const char *fname, const char *artist, const char *album, artwork
}
}
-// trace ("found %s in cache\n", path);
+ trace ("found %s in cache\n", path);
return strdup (path);
}