Skip to content
Snippets Groups Projects
Commit 872ee3d6 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix presence subscription

Fixes #9612
parent 18272496
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,9 @@ class Presence:
else:
# Convert the inital roster contact to a contact with resource
contact.resource = resource
event.old_show = status_strings.index(contact.show)
event.old_show = 0
if contact.show in status_strings:
event.old_show = status_strings.index(contact.show)
event.need_add_in_roster = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment