Actually wait for the code #3

Merged
benjamyn merged 1 commits from redis-support into main 2023-10-15 04:53:26 -04:00

View File

@ -44,7 +44,7 @@ async def check_user_registration(user_id: str, client) -> bool:
async with r.pipeline(transaction=True) as pipe:
user_exists = await pipe.get(user_id).execute()
if user_exists[0] is None:
if check_user_exists(user_id) is True:
if await check_user_exists(user_id) is True:
await pipe.set(user_id, 1)
return True
else: