Skip to content

Commit c487e8b

Browse files
committed
Remove check on discord_engagement on user login
1 parent 643487d commit c487e8b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ async def hasIntroduced():
9090
await asyncio.sleep(15)
9191
authentication = supaClient.read("contributors_registration", "discord_id", user.id)
9292
print("User has authenticated")
93-
discordEngagement = supaClient.read("discord_engagement", "contributor", user.id)[0]
94-
return discordEngagement["has_introduced"]
93+
return True
9594

9695
try:
9796
await asyncio.wait_for(hasIntroduced(), timeout=300)

0 commit comments

Comments
 (0)