diff --git a/modules/commands/sponsorship.py b/modules/commands/sponsorship.py index eb816ec..44fa779 100644 --- a/modules/commands/sponsorship.py +++ b/modules/commands/sponsorship.py @@ -51,7 +51,7 @@ async def cmd_sponsorship(app: Client, msg: Message): existent = col_sponsorships.find_one( { "user": msg.from_user.id, - "sponsorship.expires": {"$gt": datetime.now() - timedelta(days=1)}, + "sponsorship.expires": {"$gt": datetime.now() - timedelta(days=90)}, } )