diff options
author | mathieui <mathieui@mathieui.net> | 2016-06-05 02:14:26 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-06-05 02:14:26 +0200 |
commit | cf595c0ffd06f9b69f0466009516bf02bbc3ad99 (patch) | |
tree | fe41709fdfb7dd970030ee325939638d3435d907 /src/core | |
parent | b3e534e20026cb2d16f3d862f94d42174e85f665 (diff) | |
download | poezio-cf595c0ffd06f9b69f0466009516bf02bbc3ad99.tar.gz poezio-cf595c0ffd06f9b69f0466009516bf02bbc3ad99.tar.bz2 poezio-cf595c0ffd06f9b69f0466009516bf02bbc3ad99.tar.xz poezio-cf595c0ffd06f9b69f0466009516bf02bbc3ad99.zip |
Enable XEP-0319 and use it instead of 0012
(it does both by default, and is better)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.py b/src/core/core.py index cf2cfc2e..f32099f1 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -654,7 +654,7 @@ class Core(object): else: self.do_command(''.join(char_list), True) if self.status.show not in ('xa', 'away'): - self.xmpp.plugin['xep_0012'].begin_idle(jid=self.xmpp.boundjid) + self.xmpp.plugin['xep_0319'].idle() self.doupdate() def save_config(self): |