mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-18 09:02:14 +11:00
fixed allusers
This commit is contained in:
parent
13cafcca85
commit
a80f6b5959
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ public:
|
||||||
//we know it contains this key but we call this func to grab mutex
|
//we know it contains this key but we call this func to grab mutex
|
||||||
temp[i++]["name"] = u.first;
|
temp[i++]["name"] = u.first;
|
||||||
users.if_contains(u.first, [&temp, i](const User &u) {
|
users.if_contains(u.first, [&temp, i](const User &u) {
|
||||||
temp[i]["balance"] = u.balance;
|
temp[i]["balance"] = (Json::UInt)u.balance;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return temp;
|
return temp;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue