mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 06:22:45 +01:00
Merge pull request #5150 from comex/xx-boxcat
boxcat: Avoid unnecessary object copy
This commit is contained in:
commit
43f0b42088
1 changed files with 1 additions and 1 deletions
|
@ -483,7 +483,7 @@ Boxcat::StatusResult Boxcat::GetStatus(std::optional<std::string>& global,
|
||||||
global = json["global"].get<std::string>();
|
global = json["global"].get<std::string>();
|
||||||
|
|
||||||
if (json["games"].is_array()) {
|
if (json["games"].is_array()) {
|
||||||
for (const auto object : json["games"]) {
|
for (const auto& object : json["games"]) {
|
||||||
if (object.is_object() && object.find("name") != object.end()) {
|
if (object.is_object() && object.find("name") != object.end()) {
|
||||||
EventStatus detail{};
|
EventStatus detail{};
|
||||||
if (object["header"].is_string()) {
|
if (object["header"].is_string()) {
|
||||||
|
|
Loading…
Reference in a new issue