summaryrefslogtreecommitdiff
path: root/plugins/lastfm
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-12-13 17:10:40 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-12-13 17:10:40 +0100
commit115ade96d95d5149837b365e56d46af61a3df04c (patch)
tree2d06999d3b8030d5f113148805beeb6945452825 /plugins/lastfm
parent1b77fdce30fc574bfce425db546217e91045e2ea (diff)
fixed ucs2 to utf8 conversion in junklib
Diffstat (limited to 'plugins/lastfm')
-rw-r--r--plugins/lastfm/lastfm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index daa35681..40b42adf 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -514,6 +514,7 @@ lfm_send_nowplaying (void) {
snprintf (s, sizeof (s), "s=%s&", lfm_sess);
int l = strlen (lfm_nowplaying);
strcpy (lfm_nowplaying+l, s);
+ trace ("content:\n%s\n", lfm_nowplaying);
#if !LFM_NOSEND
for (int attempts = 2; attempts > 0; attempts--) {
int status = curl_req_send (lfm_nowplaying_url, lfm_nowplaying);