From c2967689875e66fc6e3473c2db41974688104786 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 25 Jun 2021 23:09:52 +0200 Subject: fix: do not print a message on a muc not found as we will nott actually create the tab. --- plugins/reorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/reorder.py b/plugins/reorder.py index 00961dbf..d4ab464b 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -177,9 +177,9 @@ class Plugin(BasePlugin): new_tabs.append(tab) old_tabs.remove(tab) else: - self.api.information('Tab %s not found. Creating it' % jid, 'Warning') # TODO: Add support for MucTab. Requires nickname. if cls in (tabs.DynamicConversationTab, tabs.StaticConversationTab): + self.api.information('Tab %s not found. Creating it' % jid, 'Warning') new_tab = cls(self.core, jid) new_tabs.append(new_tab) else: -- cgit v1.2.3