Skip to content

Commit bbf1d5f

Browse files
committed
Update Pyrogram to v2.0.6
Update to Pyrogram v2.0.6 from the latest commit on the official repo https://github.com/pyrogram/pyrogram/
1 parent c3aca08 commit bbf1d5f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyrogram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# You should have received a copy of the GNU Lesser General Public License
1717
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
1818

19-
__version__ = "2.0.5"
19+
__version__ = "2.0.6"
2020
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
2121
__copyright__ = "Copyright (C) 2017-present Dan <https://github.com/delivrance>"
2222

pyrogram/types/messages_and_media/message.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3322,7 +3322,7 @@ async def react(self, emoji: str = "") -> bool:
33223322
33233323
await client.send_reaction(
33243324
chat_id=chat_id,
3325-
message_id=message.message_id,
3325+
message_id=message.id,
33263326
emoji="🔥"
33273327
)
33283328
@@ -3345,7 +3345,7 @@ async def react(self, emoji: str = "") -> bool:
33453345

33463346
return await self._client.send_reaction(
33473347
chat_id=self.chat.id,
3348-
message_id=self.message_id,
3348+
message_id=self.id,
33493349
emoji=emoji
33503350
)
33513351

0 commit comments

Comments
 (0)