summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-07 11:58:23 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-07 11:58:23 +0200
commit79fccb4ac4c50f1d1f50ad379bc40e7ab3b52367 (patch)
tree5ab2d4a0a027b724d9bbcc192f4256a2221b4c7b
parent4cf0cf6185fffcd26ed4db15a832647d7409d86a (diff)
added '+' to list of characters to be escaped when sending info to last.fm
-rw-r--r--plugins/lastfm/lastfm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index e8d3428b..cf92baca 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -321,7 +321,7 @@ lfm_fetch_song_info (DB_playItem_t *song, const char **a, const char **t, const
static int
lfm_uri_encode (char *out, int outl, const char *str) {
int l = outl;
- static const char echars[] = " ;/?:@=#&";
+ static const char echars[] = " ;/?:@=#&+";
//trace ("lfm_uri_encode %p %d %s\n", out, outl, str);
while (*str) {
if (outl <= 1) {