Revert "fix gumroad"

This reverts commit 544af2d8e5.
master
Aevann1 2022-09-18 03:00:27 +02:00
parent 544af2d8e5
commit 2cf55bc19c
1 changed files with 3 additions and 0 deletions

View File

@ -356,6 +356,9 @@ def gumroad(v):
tier = tiers[response["variants_and_quantity"]]
if v.patron == tier: return {"error": f"{patron} rewards already claimed"}, 400
procoins = procoins_li[tier] - procoins_li[v.patron]
if procoins < 0: return {"error": f"{patron} rewards already claimed"}, 400
existing = g.db.query(User.id).filter(User.email == v.email, User.is_activated == True, User.patron >= tier).first()
if existing: return {"error": f"{patron} rewards already claimed on another account"}, 400