diff options
-rw-r--r-- | poezio/core/handlers.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index b03f5dfa..395efc26 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -1078,9 +1078,10 @@ class HandlerCore: if not msg_id: return - conversation = self.core.get_tab_by_name(jid.full, tabs.ChatTab) - conversation = conversation or self.core.get_tab_by_name(jid.bare, tabs.ChatTab) + conversation = self.core.get_tab_by_name(jid.full, tabs.OneToOneTab) + conversation = conversation or self.core.get_tab_by_name(jid.bare, tabs.OneToOneTab) if not conversation: + log.error("Received ack from non-existing chat tab: %s", jid) return try: |