summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0319/idle.py
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp/plugins/xep_0319/idle.py')
-rw-r--r--sleekxmpp/plugins/xep_0319/idle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0319/idle.py b/sleekxmpp/plugins/xep_0319/idle.py
index e541e0ad..90456f9f 100644
--- a/sleekxmpp/plugins/xep_0319/idle.py
+++ b/sleekxmpp/plugins/xep_0319/idle.py
@@ -38,10 +38,10 @@ class XEP_0319(BasePlugin):
self.xmpp.add_filter('out', self._stamp_idle_presence)
def session_bind(self, jid):
- self.xmpp['xep_0030'].add_feature('urn:xmpp:idle:0')
+ self.xmpp['xep_0030'].add_feature('urn:xmpp:idle:1')
def plugin_end(self):
- self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:idle:0')
+ self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:idle:1')
self.xmpp.del_filter('out', self._stamp_idle_presence)
self.xmpp.remove_handler('Idle Presence')