summaryrefslogtreecommitdiff
path: root/src/core/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-05-15 23:33:51 +0200
committermathieui <mathieui@mathieui.net>2014-05-15 23:33:51 +0200
commit97ef9d7fb90fd4a3a408868f0aa996728ad382cd (patch)
treec901a77993ae90c758cbb915b14c1da36edd975b /src/core/core.py
parent916416a019c398a484b6a436ee908808780263f9 (diff)
downloadpoezio-97ef9d7fb90fd4a3a408868f0aa996728ad382cd.tar.gz
poezio-97ef9d7fb90fd4a3a408868f0aa996728ad382cd.tar.bz2
poezio-97ef9d7fb90fd4a3a408868f0aa996728ad382cd.tar.xz
poezio-97ef9d7fb90fd4a3a408868f0aa996728ad382cd.zip
Make detecting the features supported by the remote entity less awful
no more stalling while waiting for a disco info while sending a message.
Diffstat (limited to 'src/core/core.py')
-rw-r--r--src/core/core.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/core.py b/src/core/core.py
index 74930083..2e7a3c64 100644
--- a/src/core/core.py
+++ b/src/core/core.py
@@ -298,7 +298,6 @@ class Core(object):
self.on_theme_config_change)
self.add_configuration_handler("", self.on_any_config_change)
- self.reset_iq_errors()
def on_any_config_change(self, option, value):
"""
@@ -741,13 +740,6 @@ class Core(object):
self.timed_events.remove(event)
break
- def reset_iq_errors(self):
- "Reset the iq error cache periodically"
- fixes.reset_iq_errors()
- self.add_timed_event(
- timed_events.DelayedEvent(7200, self.reset_iq_errors))
-
-
####################### XMPP-related actions ##################################
def get_status(self):