Fix component mode

This commit is contained in:
Schimon Jehudah 2024-02-23 13:51:19 +00:00
parent e13807442e
commit e2652760bc
4 changed files with 1096 additions and 535 deletions

View file

@ -195,7 +195,11 @@ def main():
# # socket.socket = socks.socksocket
# Setup the command line arguments.
parser = ArgumentParser(description=Slixfeed.__doc__)
match xmpp_type:
case 'client':
parser = ArgumentParser(description=Slixfeed.__doc__)
case 'component':
parser = ArgumentParser(description=SlixfeedComponent.__doc__)
parser.add_argument('-v', '--version', help='Print version',
action='version', version=__version__)

View file

@ -1,2 +1,2 @@
__version__ = '0.1.17'
__version_info__ = (0, 1, 17)
__version__ = '0.1.18'
__version_info__ = (0, 1, 18)

View file

@ -1882,6 +1882,7 @@ class Slixfeed(slixmpp.ClientXMPP):
# session["has_next"] = False
session['next'] = None
session['payload'] = form
return session
async def _handle_contact_action(self, payload, session):

File diff suppressed because it is too large Load diff