summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Ian Nartowicz <iann@crunchbang>2014-07-19 01:30:27 +0100
committerGravatar Ian Nartowicz <iann@crunchbang>2014-07-19 01:30:27 +0100
commit339c20f2dbe2b86124975a6540d1e15f1a702652 (patch)
treecbbd241372706cf4173c7c98fd49d0e11c3bd9b4 /plugins
parent3c8b29056cb4e68067f475ee6653640b199087df (diff)
Fix albumart.org URL
Diffstat (limited to 'plugins')
-rw-r--r--plugins/artwork/albumartorg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/artwork/albumartorg.c b/plugins/artwork/albumartorg.c
index c15a17ad..f6860220 100644
--- a/plugins/artwork/albumartorg.c
+++ b/plugins/artwork/albumartorg.c
@@ -43,7 +43,7 @@ fetch_from_albumart_org (const char *artist, const char *album, const char *dest
char url [1024];
char *artist_url = uri_escape (artist, 0);
char *album_url = uri_escape (album, 0);
- snprintf (url, sizeof (url), "http://www.albumart.org/index.php?srchkey=%s+%s&itempage=1&newsearch=1&searchindex=Music", artist_url, album_url);
+ snprintf (url, sizeof (url), "http://www.albumart.org/index.php?searchkey=%s+%s&itempage=1&newsearch=1&searchindex=Music", artist_url, album_url);
free (artist_url);
free (album_url);