diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2016-11-23 23:41:22 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2016-11-23 23:41:22 +0000 |
commit | f8c9347423d2f860a90d7e055a1c9ddff8cdab32 (patch) | |
tree | 4ad469994adfb233624a51032c1cf557499f6603 /protocols/twitter/twitter_lib.c | |
parent | 5a8afc3f24a5308799d3960cab5726228345022d (diff) |
Heh, oops, some error in the Twitter module still mentioned XML. Fixed.
Some structs still have xml in their name but meh, at least that's not
visible to the user.
Diffstat (limited to 'protocols/twitter/twitter_lib.c')
-rw-r--r-- | protocols/twitter/twitter_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c index c66c1d89..cd8247c2 100644 --- a/protocols/twitter/twitter_lib.c +++ b/protocols/twitter/twitter_lib.c @@ -233,7 +233,7 @@ static json_value *twitter_parse_response(struct im_connection *ic, struct http_ if ((ret = json_parse(req->reply_body, req->body_size)) == NULL) { imcb_error(ic, "Could not retrieve %s: %s", - path, "XML parse error"); + path, "JSON parse error"); } return ret; } |