diff options
author | badlop <badlop@ono.com> | 2013-04-10 04:40:28 -0700 |
---|---|---|
committer | badlop <badlop@ono.com> | 2013-04-10 04:40:28 -0700 |
commit | c98540b8dbfe66cf870551279927ab2b0b99c445 (patch) | |
tree | 74ada46fca335845a25e0904f35b58ad92ab8b43 | |
parent | Don't overwrite inetrc when installing (thanks to skeltoac) (diff) | |
parent | Change message type of carbon copies from 'chart' to 'chat' (diff) |
Merge pull request #57 from rraptorr/carboncopy
Change message type of carbon copies from 'chart' to 'chat'
-rw-r--r-- | src/mod_carboncopy.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_carboncopy.erl b/src/mod_carboncopy.erl index 4f4dfbe84..b868aa022 100644 --- a/src/mod_carboncopy.erl +++ b/src/mod_carboncopy.erl @@ -193,7 +193,7 @@ send_copies(JID, Packet, Direction)-> build_forward_packet(JID, Packet, Sender, Dest, Direction, ?NS_CC_2) -> #xmlel{name = <<"message">>, attrs = [{<<"xmlns">>, <<"jabber:client">>}, - {<<"type">>, <<"chart">>}, + {<<"type">>, <<"chat">>}, {<<"from">>, jlib:jid_to_string(Sender)}, {<<"to">>, jlib:jid_to_string(Dest)}], children = [ @@ -209,7 +209,7 @@ build_forward_packet(JID, Packet, Sender, Dest, Direction, ?NS_CC_2) -> build_forward_packet(JID, Packet, Sender, Dest, Direction, ?NS_CC_1) -> #xmlel{name = <<"message">>, attrs = [{<<"xmlns">>, <<"jabber:client">>}, - {<<"type">>, <<"chart">>}, + {<<"type">>, <<"chat">>}, {<<"from">>, jlib:jid_to_string(Sender)}, {<<"to">>, jlib:jid_to_string(Dest)}], children = [ |