diff options
-rw-r--r-- | poezio/tabs/muctab.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |