Minor changes to command list items

This commit is contained in:
Schimon Jehudah 2024-02-16 02:21:08 +00:00
parent 8b6584fe6d
commit aa747985d9

View file

@ -470,10 +470,10 @@ class Slixfeed(slixmpp.ClientXMPP):
# if jid == config.get_value('accounts', 'XMPP', 'operator'): # if jid == config.get_value('accounts', 'XMPP', 'operator'):
self['xep_0050'].add_command(node='subscription', self['xep_0050'].add_command(node='subscription',
name=' Add Subscription', name=' Add',
handler=self._handle_subscription_add) handler=self._handle_subscription_add)
self['xep_0050'].add_command(node='subscriptions', self['xep_0050'].add_command(node='subscriptions',
name='📰️ Browse Subscriptions', name='📰️ Subscriptions',
handler=self._handle_subscriptions) handler=self._handle_subscriptions)
# self['xep_0050'].add_command(node='subscriptions_cat', # self['xep_0050'].add_command(node='subscriptions_cat',
# name='🔖️ Categories', # name='🔖️ Categories',
@ -519,12 +519,12 @@ class Slixfeed(slixmpp.ClientXMPP):
self['xep_0050'].add_command(node='export', self['xep_0050'].add_command(node='export',
name='📤️ Export', name='📤️ Export',
handler=self._handle_export) handler=self._handle_export)
self['xep_0050'].add_command(node='credit',
name='🏅️ Credits',
handler=self._handle_credit)
self['xep_0050'].add_command(node='privacy', self['xep_0050'].add_command(node='privacy',
name='Privacy', name='Privacy',
handler=self._handle_privacy) handler=self._handle_privacy)
self['xep_0050'].add_command(node='credit',
name='Credits', # 💡️
handler=self._handle_credit)
self['xep_0050'].add_command(node='about', self['xep_0050'].add_command(node='about',
name='About', # 📜️ name='About', # 📜️
handler=self._handle_about) handler=self._handle_about)