diff options
author | mathieui <mathieui@mathieui.net> | 2012-08-03 17:34:39 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-08-03 17:34:39 +0200 |
commit | 7826511abb65408cc37d86f826b6f41125750ab6 (patch) | |
tree | 0d7b0dcca8d7db0d4a473b80a74c6c30883e0540 /src | |
parent | 0b8211fe282353c0b4fce8238f7bcb36e4f91d7c (diff) | |
download | poezio-7826511abb65408cc37d86f826b6f41125750ab6.tar.gz poezio-7826511abb65408cc37d86f826b6f41125750ab6.tar.bz2 poezio-7826511abb65408cc37d86f826b6f41125750ab6.tar.xz poezio-7826511abb65408cc37d86f826b6f41125750ab6.zip |
Do not set last activity when sending a stanza because it makes no sense
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index b2906f10..f34a97af 100644 --- a/src/core.py +++ b/src/core.py @@ -2642,7 +2642,6 @@ class Core(object): """ We are sending a new stanza, write it in the xml buffer if needed. """ - self.xmpp.plugin['xep_0012'].set_last_activity() if self.xml_tabs: self.add_message_to_text_buffer(self.xml_buffer, '\x191}<--\x19o %s' % stanza) if isinstance(self.current_tab(), tabs.XMLTab): |