diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-02-24 20:02:18 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-02-24 20:02:18 +0100 |
commit | 138b17cdb35da9b31fbea9c61e4a0e5bcab8b87e (patch) | |
tree | 3d8fa21b3812f94e94030a4d43d70ae65ff91189 /src/connection.py | |
parent | cc74576c9f5a77128db99468a8432c7de8100302 (diff) | |
download | poezio-138b17cdb35da9b31fbea9c61e4a0e5bcab8b87e.tar.gz poezio-138b17cdb35da9b31fbea9c61e4a0e5bcab8b87e.tar.bz2 poezio-138b17cdb35da9b31fbea9c61e4a0e5bcab8b87e.tar.xz poezio-138b17cdb35da9b31fbea9c61e4a0e5bcab8b87e.zip |
In normal conversations: Send composing and active chat states
and display the state of the remote contact
Diffstat (limited to 'src/connection.py')
-rw-r--r-- | src/connection.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/connection.py b/src/connection.py index a8bd491f..c12680b8 100644 --- a/src/connection.py +++ b/src/connection.py @@ -55,6 +55,7 @@ class Connection(sleekxmpp.ClientXMPP): self.register_plugin('xep_0030') self.register_plugin('xep_0045') self.register_plugin('xep_0004') + self.register_plugin('xep_0085') if config.get('send_poezio_info', 'true') == 'true': info = {'name':'poezio', 'version':'0.7.5-dev'} |