fix: Reveal from auction page crash
All checks were successful
Build Docker / Build Image (push) Successful in 2m41s
All checks were successful
Build Docker / Build Image (push) Successful in 2m41s
Reveal from the auction page had a missing function call
This commit is contained in:
2
main.py
2
main.py
@@ -1070,7 +1070,7 @@ def reveal_auction(domain):
|
||||
return redirect("/logout")
|
||||
|
||||
domain = domain.lower()
|
||||
response = account_module(request.cookies.get("account"),domain)
|
||||
response = account_module.revealAuction(request.cookies.get("account"),domain)
|
||||
if 'error' in response:
|
||||
return redirect("/auction/" + domain + "?message=" + response['error']['message'])
|
||||
return redirect("/success?tx=" + response['hash'])
|
||||
|
||||
Reference in New Issue
Block a user