diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2019-07-19 18:20:01 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2019-07-19 18:20:01 +0200 |
commit | 21d2698b093021e3339764679a75fe095e526ef3 (patch) | |
tree | be21dd8cce3bf132a4d0aad7cb1a0eccd2664426 /plugins | |
parent | ff2f7b3fdc7c0f220ff20dc19af1c95db4669c9e (diff) | |
download | poezio-21d2698b093021e3339764679a75fe095e526ef3.tar.gz poezio-21d2698b093021e3339764679a75fe095e526ef3.tar.bz2 poezio-21d2698b093021e3339764679a75fe095e526ef3.tar.xz poezio-21d2698b093021e3339764679a75fe095e526ef3.zip |
plugins/link: make link plugin work in 1:1 tabs
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/link.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/link.py b/plugins/link.py index 352d403d..7f6920aa 100644 --- a/plugins/link.py +++ b/plugins/link.py @@ -97,7 +97,7 @@ app_mapping = { class Plugin(BasePlugin): def init(self): - for _class in (tabs.MucTab, tabs.PrivateTab, tabs.ConversationTab): + for _class in (tabs.MucTab, tabs.PrivateTab, tabs.DynamicConversationTab, tabs.StaticConversationsTab): self.api.add_tab_command( _class, 'link', |