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