mirror of
https://git.wownero.com/wownero/YellWOWPages.git
synced 2024-08-15 01:03:25 +00:00
Allow address length 97 and 108
This commit is contained in:
parent
b870c61084
commit
8da5161c97
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ async def dashboard():
|
||||||
async def dashboard_address_post():
|
async def dashboard_address_post():
|
||||||
form = await request.form
|
form = await request.form
|
||||||
address = form.get('address')
|
address = form.get('address')
|
||||||
if len(address) != 97:
|
if len(address) not in [97, 108]:
|
||||||
raise Exception("Please submit a WOW address")
|
raise Exception("Please submit a WOW address")
|
||||||
|
|
||||||
# update user
|
# update user
|
||||||
|
|
Loading…
Reference in a new issue