Skip to content

Commit

Permalink
Added handling of removed roster tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tomer8007 committed Aug 2, 2020
1 parent 2a791a9 commit dd49261
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kik_unofficial/datatypes/xmpp/roster.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def parse_peer(element):
return Group(element)
elif element.name == "item":
return User(element)
elif element.name == "removed":
# deleted accounts?
return User(element)


class QueryUsersInfoRequest(XMPPElement):
Expand Down

0 comments on commit dd49261

Please sign in to comment.