Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit f6cd80a

Browse files
committed
Remove spurious user ID prefixes in call messages
Part of #135.
1 parent af3db1e commit f6cd80a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

skpy/msg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ def rawToFields(cls, raw={}):
656656
"missed": cls.State.Missed}.get(listTag.get("type")),
657657
"userIds": [], "userNames": []})
658658
for partTag in listTag.find_all("part"):
659-
fields["userIds"].append(partTag.get("identity"))
659+
fields["userIds"].append(SkypeUtils.noPrefix(partTag.get("identity")))
660660
fields["userNames"].append(partTag.find("name").text)
661661
return fields
662662

0 commit comments

Comments
 (0)