diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-22 23:17:22 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-22 23:17:22 +0300 |
commit | dffa41d2751a0ae5c05a2943107abffc48fcf0dd (patch) | |
tree | a17142c98b56867050a8b15d46143c18a7c450e6 /protocols/JabberG | |
parent | e0ed434b759f834663074962899ff72a890b62d5 (diff) |
fix of sending private messages
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_chat.cpp b/protocols/JabberG/src/jabber_chat.cpp index 98354cc203..1a7b934cf7 100644 --- a/protocols/JabberG/src/jabber_chat.cpp +++ b/protocols/JabberG/src/jabber_chat.cpp @@ -1397,7 +1397,7 @@ int CJabberProto::JabberGcEventHook(WPARAM, LPARAM lParam) break;
case GC_USER_PRIVMESS:
- sttSendPrivateMessage(this, item, roomJid);
+ sttSendPrivateMessage(this, item, T2Utf(gch->ptszUID));
break;
case GC_USER_LOGMENU:
|