summaryrefslogtreecommitdiff
path: root/protocols/Tlen/src/tlen_svc.cpp
diff options
context:
space:
mode:
authorSzymon Tokarz <wsx22@o2.pl>2015-07-12 22:24:23 +0000
committerSzymon Tokarz <wsx22@o2.pl>2015-07-12 22:24:23 +0000
commit78573b079bec4aa315c4e2b87883ef6a1622b221 (patch)
tree19d175b2fa7c7baa458d7be69b7a65c7d5bd4c1a /protocols/Tlen/src/tlen_svc.cpp
parentf1f08af4d7a1b4bedf55fb25af974276e5eb858c (diff)
Tlen protocol
- fix encoding in send and receive messages, after commit 11066, tlen has never support PF4_IMSENDUTF git-svn-id: http://svn.miranda-ng.org/main/trunk@14547 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tlen/src/tlen_svc.cpp')
-rw-r--r--protocols/Tlen/src/tlen_svc.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/protocols/Tlen/src/tlen_svc.cpp b/protocols/Tlen/src/tlen_svc.cpp
index fda51c425e..84755d7291 100644
--- a/protocols/Tlen/src/tlen_svc.cpp
+++ b/protocols/Tlen/src/tlen_svc.cpp
@@ -612,18 +612,19 @@ int TlenProtocol::SendMsg(MCONTACT hContact, int, const char* msgRAW)
TLEN_LIST_ITEM *item;
char msgType[16];
+ char* msg = mir_utf8decodeA(msgRAW);
int id = TlenSerialNext(this);
- if (!mir_strcmp(msgRAW, "<alert>")) {
+ if (!mir_strcmp(msg, "<alert>")) {
TlenSend(this, "<m tp='a' to='%s'/>", dbv.pszVal);
forkthread(TlenSendMessageAckThread, 0, new SENDACKTHREADDATA(this, hContact, id));
}
- else if (!mir_strcmp(msgRAW, "<image>")) {
+ else if (!mir_strcmp(msg, "<image>")) {
TlenSend(this, "<message to='%s' type='%s' crc='%x' idt='%d'/>", dbv.pszVal, "pic", 0x757f044, id);
forkthread(TlenSendMessageAckThread, 0, new SENDACKTHREADDATA(this, hContact, id));
}
else {
- char *msgEnc = TlenTextEncode(msgRAW);
+ char *msgEnc = TlenTextEncode(msg);
if (msgEnc != NULL) {
if (TlenListExist(this, LIST_CHATROOM, dbv.pszVal) && strchr(dbv.pszVal, '/') == NULL)
mir_strcpy(msgType, "groupchat");
@@ -651,6 +652,7 @@ int TlenProtocol::SendMsg(MCONTACT hContact, int, const char* msgRAW)
mir_free(msgEnc);
}
+ mir_free(msg);
db_free(&dbv);
return id;
}