Skip to content

Commit

Permalink
forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
weebzone authored Sep 28, 2022
1 parent 9e6968b commit f7e0c81
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,13 @@ def get_client():
SUDO_USERS.add(int(_id.strip()))
except:
pass
if len(aid) != 0:
try:
aid = getConfig('PAID_USERS')
aid = aid.split()
PAID_USERS = {int(_id.strip()) for _id in aid}
else:
PAID_USERS = set()
for _id in aid:
PAID_USERS.add(int(_id.strip()))
except:
pass
try:
aid = getConfig("LOG_LEECH")
aid = aid.split(" ")
Expand Down

0 comments on commit f7e0c81

Please sign in to comment.