Fix GameHighScore in the chat with yourself (#669)

Signed-off-by: Mario A <marioanacl22@gmail.com>
This commit is contained in:
Mario A 2021-04-26 20:45:23 +02:00 committed by GitHub
parent 5e77387919
commit 2de1606e3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ class GameHighScore(Object):
@staticmethod
def _parse_action(client, service: raw.types.MessageService, users: dict):
return GameHighScore(
user=types.User._parse(client, users[utils.get_raw_peer_id(service.from_id)]),
user=types.User._parse(client, users[utils.get_raw_peer_id(service.from_id or service.peer_id)]),
score=service.action.score,
client=client
)