Stop using input version on events to just get the ID

This commit is contained in:
Lonami Exo 2018-04-08 15:55:10 +02:00
parent 93b5909be5
commit 414fec91f1
2 changed files with 5 additions and 6 deletions

View File

@ -272,8 +272,8 @@ class ChatAction(EventBuilder):
"""
Returns the marked signed ID of the first user, if any.
"""
if self.input_users:
return utils.get_peer_id(self._input_users[0])
if self._user_peers:
return utils.get_peer_id(self._user_peers[0])
@property
def users(self):
@ -325,5 +325,5 @@ class ChatAction(EventBuilder):
"""
Returns the marked signed ID of the users, if any.
"""
if self.input_users:
return [utils.get_peer_id(u) for u in self._input_users]
if self._user_peers:
return [utils.get_peer_id(u) for u in self._user_peers]

View File

@ -263,8 +263,7 @@ class NewMessage(EventBuilder):
"""
Returns the marked sender integer ID, if present.
"""
if self.input_sender:
return utils.get_peer_id(self._input_sender)
return self.message.from_id
@property
def text(self):