basetabs: remove useless check_features

This commit is contained in:
mathieui 2021-01-30 12:35:49 +01:00 committed by Link Mauve
parent 184f354e8d
commit 23c1783143
2 changed files with 0 additions and 14 deletions

View file

@ -955,7 +955,6 @@ class OneToOneTab(ChatTab):
# Set to true once the first disco is done # Set to true once the first disco is done
self.__initial_disco = False self.__initial_disco = False
self.check_features()
self.register_command( self.register_command(
'unquery', self.command_unquery, shortdesc='Close the tab.') 'unquery', self.command_unquery, shortdesc='Close the tab.')
self.register_command( self.register_command(
@ -1038,14 +1037,6 @@ class OneToOneTab(ChatTab):
) )
self.refresh() 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 @command_args_parser.raw
def command_attention(self, message): def command_attention(self, message):
"""/attention [message]""" """/attention [message]"""
@ -1082,7 +1073,3 @@ class OneToOneTab(ChatTab):
msg = msg % (self.name, feature, command_name) msg = msg % (self.name, feature, command_name)
self.core.information(msg, 'Info') self.core.information(msg, 'Info')
return True return True
def features_checked(self, iq):
"Features check callback"
features = iq['disco_info'].get_features() or []

View file

@ -369,7 +369,6 @@ class PrivateTab(OneToOneTab):
The user (or at least someone with the same nick) came back in the MUC The user (or at least someone with the same nick) came back in the MUC
""" """
self.activate() self.activate()
self.check_features()
tab = self.parent_muc tab = self.parent_muc
theme = get_theme() theme = get_theme()
color = dump_tuple(theme.COLOR_REMOTE_USER) color = dump_tuple(theme.COLOR_REMOTE_USER)