bugfix
This commit is contained in:
parent
843f010500
commit
4a552b3b9e
@ -71,8 +71,8 @@ async def get_userapikey(sor, upappid, callerid):
|
||||
r = recs[0]
|
||||
debug(f'{r=}')
|
||||
return DictObject(**{
|
||||
'apikey':password_decode(r.apikey),
|
||||
'secretkey':password_decode(r.secretkey),
|
||||
'apikey':None if r.apikey is None else password_decode(r.apikey),
|
||||
'secretkey':None if r.secretkey is None else password_decode(r.secretkey),
|
||||
'baseurl':r.baseurl,
|
||||
'appownerid': r.appownerid,
|
||||
'myappid': r.myappid
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user