Fix caps by setting up all items before presence

Note that update_caps also sends presence by default, when broadcast=True
This commit is contained in:
Stephen Paul Weber 2024-02-13 15:06:11 -05:00
parent d3af15d623
commit d7c213fe59
No known key found for this signature in database
GPG key ID: D11C2911CE519CDE

View file

@ -201,19 +201,17 @@ class Slixfeed(slixmpp.ClientXMPP):
async def on_session_start(self, event):
self.send_presence()
await self['xep_0115'].update_caps(preserve=True)
profile.set_identity(self, 'client')
self.service_commands()
self.service_reactions()
await self['xep_0115'].update_caps()
await self.get_roster()
await XmppGroupchat.autojoin(self)
profile.set_identity(self, 'client')
await profile.update(self)
task.task_ping(self)
# Service.commands(self)
# Service.reactions(self)
self.service_commands()
self.service_reactions()
async def on_session_resumed(self, event):