From c8ee85cca7d5fbb5ba40d6eff60031e1e8deaa2c Mon Sep 17 00:00:00 2001 From: Georg Lukas Date: Tue, 28 Mar 2017 10:47:04 +0200 Subject: self-ping: consider 'feature-not-implemented' a valid ping response --- poezio/tabs/muctab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio/tabs') diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 54b7cabf..bb4d21bb 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -1697,7 +1697,7 @@ class MucTab(ChatTab): timeout=60) def on_self_ping_result(self, iq): - if iq["type"] == "error": + if iq["type"] == "error" and iq["error"]["condition"] != "feature-not-implemented": self.command_cycle(iq["error"]["text"] or "not in this room") self.core.refresh_window() else: # Re-send a self-ping in a few seconds -- cgit v1.2.3