forked from Dniel97/artemis
Fix handle_get_user_tech_count_api_request so that it'll properly return tech award counts
This commit is contained in:
parent
bd7e1cead0
commit
39fc5772eb
@ -426,9 +426,10 @@ class OngekiBase:
|
||||
userTechCountList = []
|
||||
|
||||
for tc in utcl:
|
||||
tc.pop("id")
|
||||
tc.pop("user")
|
||||
userTechCountList.append(tc)
|
||||
tmp = tc._asdict()
|
||||
tmp.pop("id")
|
||||
tmp.pop("user")
|
||||
userTechCountList.append(tmp)
|
||||
|
||||
return {
|
||||
"userId": data["userId"],
|
||||
|
Loading…
Reference in New Issue
Block a user