summaryrefslogtreecommitdiff
path: root/poezio/tabs/conversationtab.py
diff options
context:
space:
mode:
authorMadhur Garg <madhurgarg96@gmail.com>2019-03-24 19:35:43 +0530
committerMadhur Garg <madhurgarg96@gmail.com>2019-03-24 19:35:43 +0530
commitb5cca8687d16afafbbfcbd7f74a3c8aa8ca35108 (patch)
tree75660000b4f196fb9120ea81ba2eae3d77b3ca03 /poezio/tabs/conversationtab.py
parentf51d4951988c50fb306b607cc2b7f8361451f434 (diff)
downloadpoezio-b5cca8687d16afafbbfcbd7f74a3c8aa8ca35108.tar.gz
poezio-b5cca8687d16afafbbfcbd7f74a3c8aa8ca35108.tar.bz2
poezio-b5cca8687d16afafbbfcbd7f74a3c8aa8ca35108.tar.xz
poezio-b5cca8687d16afafbbfcbd7f74a3c8aa8ca35108.zip
Corrects the functionality of /add command in all tabs. Fixes #3395
Diffstat (limited to 'poezio/tabs/conversationtab.py')
-rw-r--r--poezio/tabs/conversationtab.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/poezio/tabs/conversationtab.py b/poezio/tabs/conversationtab.py
index 60106527..d1ad608c 100644
--- a/poezio/tabs/conversationtab.py
+++ b/poezio/tabs/conversationtab.py
@@ -73,13 +73,6 @@ class ConversationTab(OneToOneTab):
shortdesc='Get the activity.',
completion=self.core.completion.last_activity)
self.register_command(
- 'add',
- self.command_add,
- desc='Add the current JID to your roster, ask them to'
- ' allow you to see his presence, and allow them to'
- ' see your presence.',
- shortdesc='Add a user to your roster.')
- self.register_command(
'invite',
self.core.command.impromptu,
desc='Invite people into an impromptu room.',
@@ -257,19 +250,6 @@ class ConversationTab(OneToOneTab):
self.core.xmpp.plugin['xep_0092'].get_version(
jid, callback=self.core.handler.on_version_result)
- @command_args_parser.ignored
- def command_add(self):
- """
- Add the current JID to the roster, and automatically
- accept the reverse subscription
- """
- jid = self.general_jid
- if jid in roster and roster[jid].subscription in ('to', 'both'):
- return self.core.information('Already subscribed.', 'Roster')
- roster.add(jid)
- roster.modified()
- self.core.information('%s was added to the roster' % jid, 'Roster')
-
def resize(self):
self.need_resize = False
if self.size.tab_degrade_y: