Add chat.id

This commit is contained in:
Florent Gallaire 2020-07-09 01:49:38 +00:00
parent 4aaa7160f0
commit fd944677c7

View File

@ -2687,9 +2687,9 @@ class Message(Object, Update):
""" """
if as_copy: if as_copy:
if self.service: if self.service:
log.warning("Unable to copy service messages, message_id: {}".format(self.message_id)) log.warning("Unable to copy service messages, message_id: {} from chat.id: {}".format(self.message_id, self.chat.id))
elif self.game and not self._client.is_bot: elif self.game and not self._client.is_bot:
log.warning("Users cannot send messages with Game media type, message_id: {}".format(self.message_id)) log.warning("Users cannot send messages with Game media type, message_id: {} from chat.id: {}".format(self.message_id, self.chat.id))
elif self.text: elif self.text:
return self._client.send_message( return self._client.send_message(
chat_id, chat_id,