diff options
author | Lance Stout <lancestout@gmail.com> | 2012-10-14 17:35:37 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-10-14 17:35:37 -0700 |
commit | 7c485c6a8b25b97c7faa4abda6e82200bd09bcae (patch) | |
tree | a1f09f31f4bdd2cf8c5bc438fefcc1b3f37a861c /sleekxmpp/plugins/xep_0280/carbons.py | |
parent | fc07e23ff8f2eb7c67a1dfeae0db67b182144fca (diff) | |
parent | e2e8c4b5dcca3dddfda6e60850a6754018e8f60d (diff) | |
download | slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.gz slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.bz2 slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.xz slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/plugins/xep_0280/carbons.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0280/carbons.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0280/carbons.py b/sleekxmpp/plugins/xep_0280/carbons.py index fe2cdbb2..482d046a 100644 --- a/sleekxmpp/plugins/xep_0280/carbons.py +++ b/sleekxmpp/plugins/xep_0280/carbons.py @@ -47,13 +47,18 @@ class XEP_0280(BasePlugin): register_stanza_plugin(Iq, stanza.CarbonEnable) register_stanza_plugin(Iq, stanza.CarbonDisable) + register_stanza_plugin(stanza.ReceivedCarbon, + self.xmpp['xep_0297'].stanza.Forwarded) + register_stanza_plugin(stanza.SentCarbon, + self.xmpp['xep_0297'].stanza.Forwarded) + def plugin_end(self): self.xmpp.remove_handler('Carbon Received') self.xmpp.remove_handler('Carbon Sent') - self.xmpp.plugin['xep_0030'].del_feature(feature='urn:xmpp:carbons:1') + self.xmpp.plugin['xep_0030'].del_feature(feature='urn:xmpp:carbons:2') def session_bind(self, jid): - self.xmpp.plugin['xep_0030'].add_feature('urn:xmpp:carbons:1') + self.xmpp.plugin['xep_0030'].add_feature('urn:xmpp:carbons:2') def _handle_carbon_received(self, msg): self.xmpp.event('carbon_received', msg) |