Skip to content

Commit

Permalink
Fix leech dump chat if int
Browse files Browse the repository at this point in the history
  • Loading branch information
anasty17 authored Nov 6, 2023
1 parent 5296f42 commit d869bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/helper/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ async def beforeStart(self):
elif self.upDest.startswith("u:"):
self.upDest = self.upDest.lstrip("u:")
self.userTransmission = IS_PREMIUM_USER
if self.upDest.isdigit() or self.upDest.startswith("-"):
if self.upDest.isdigit() or self.upDest.startswith("-"):
self.upDest = int(self.upDest)
if self.upDest:
if self.userTransmission:
Expand Down

0 comments on commit d869bd5

Please sign in to comment.