Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2015-02-20 01:21:51 +0300
committerEion Robb <eion@robbmob.com>2015-02-20 01:21:51 +0300
commita1f9e00b4532f1798bff8887f6291127da827bb3 (patch)
treed8fbc44bc266789d033eadb79d904a5f119ee71e
parent04c56832642b9b448928be99e0ba64056603d2a9 (diff)
SkypeWeb : Send newlines as \r\n instead of <br>
-rw-r--r--skypeweb/skypeweb_messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skypeweb/skypeweb_messages.c b/skypeweb/skypeweb_messages.c
index 8128105..1fd8580 100644
--- a/skypeweb/skypeweb_messages.c
+++ b/skypeweb/skypeweb_messages.c
@@ -805,7 +805,7 @@ skypeweb_send_message(SkypeWebAccount *sa, const gchar *convname, const gchar *m
obj = json_object_new();
json_object_set_string_member(obj, "clientmessageid", clientmessageid_str);
- json_object_set_string_member(obj, "content", message);
+ json_object_set_string_member(obj, "content", stripped);
json_object_set_string_member(obj, "messagetype", "RichText");
json_object_set_string_member(obj, "contenttype", "text");