diff options
author | mathieui <mathieui@mathieui.net> | 2016-06-04 23:00:18 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-06-04 23:00:18 +0200 |
commit | bb3ddde9f6ffa17783c5e44cf48079b4f0ef9667 (patch) | |
tree | 229089bb224f8d6c7fb19da07c33cbe392f9748a | |
parent | 10c0ca94bbb871551ec65467b47ae13db1377d16 (diff) | |
download | poezio-bb3ddde9f6ffa17783c5e44cf48079b4f0ef9667.tar.gz poezio-bb3ddde9f6ffa17783c5e44cf48079b4f0ef9667.tar.bz2 poezio-bb3ddde9f6ffa17783c5e44cf48079b4f0ef9667.tar.xz poezio-bb3ddde9f6ffa17783c5e44cf48079b4f0ef9667.zip |
Enable CSI by default
(but don’t do anything with it, leave that to plugins)
-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 5033e616..c105c4bd 100644 --- a/src/connection.py +++ b/src/connection.py @@ -163,6 +163,7 @@ class Connection(slixmpp.ClientXMPP): self.register_plugin('xep_0297') self.register_plugin('xep_0308') self.register_plugin('xep_0334') + self.register_plugin('xep_0352') self.init_plugins() def set_keepalive_values(self, option=None, value=None): |