diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-30 12:35:49 +0100 |
---|---|---|
committer | Link Mauve <linkmauve@linkmauve.fr> | 2021-02-03 15:22:09 +0100 |
commit | 23c17831438b0d2dfc9da371c3462450a18fafc6 (patch) | |
tree | f5c397297e81d696dff1c1bc6b79d53f3afa3b28 | |
parent | 184f354e8dac7b49243a1069b9f43c54f4bbe26c (diff) | |
download | poezio-23c17831438b0d2dfc9da371c3462450a18fafc6.tar.gz poezio-23c17831438b0d2dfc9da371c3462450a18fafc6.tar.bz2 poezio-23c17831438b0d2dfc9da371c3462450a18fafc6.tar.xz poezio-23c17831438b0d2dfc9da371c3462450a18fafc6.zip |
basetabs: remove useless check_features
-rw-r--r-- | poezio/tabs/basetabs.py | 13 | ||||
-rw-r--r-- | poezio/tabs/privatetab.py | 1 |
2 files changed, 0 insertions, 14 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py index 8f746eab..1738ea39 100644 --- a/poezio/tabs/basetabs.py +++ b/poezio/tabs/basetabs.py @@ -955,7 +955,6 @@ class OneToOneTab(ChatTab): # Set to true once the first disco is done self.__initial_disco = False - self.check_features() self.register_command( 'unquery', self.command_unquery, shortdesc='Close the tab.') self.register_command( @@ -1038,14 +1037,6 @@ class OneToOneTab(ChatTab): ) self.refresh() - def check_features(self): - "check the features supported by the other party" - if safeJID(self.get_dest_jid()).resource: - self.core.xmpp.plugin['xep_0030'].get_info( - jid=self.get_dest_jid(), - timeout=5, - callback=self.features_checked) - @command_args_parser.raw def command_attention(self, message): """/attention [message]""" @@ -1082,7 +1073,3 @@ class OneToOneTab(ChatTab): msg = msg % (self.name, feature, command_name) self.core.information(msg, 'Info') return True - - def features_checked(self, iq): - "Features check callback" - features = iq['disco_info'].get_features() or [] diff --git a/poezio/tabs/privatetab.py b/poezio/tabs/privatetab.py index 54b9a15d..a59962e1 100644 --- a/poezio/tabs/privatetab.py +++ b/poezio/tabs/privatetab.py @@ -369,7 +369,6 @@ class PrivateTab(OneToOneTab): The user (or at least someone with the same nick) came back in the MUC """ self.activate() - self.check_features() tab = self.parent_muc theme = get_theme() color = dump_tuple(theme.COLOR_REMOTE_USER) |