mirror of
https://github.com/xmrig/xmrig.git
synced 2025-03-09 10:16:05 +00:00
Fixed bug in aliases logic.
This commit is contained in:
parent
ed3a39dc74
commit
d254aafb93
1 changed files with 4 additions and 0 deletions
|
@ -61,7 +61,11 @@ size_t xmrig::Threads<T>::read(const rapidjson::Value &value)
|
||||||
if (!threads.isEmpty()) {
|
if (!threads.isEmpty()) {
|
||||||
move(member.name.GetString(), std::move(threads));
|
move(member.name.GetString(), std::move(threads));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto &member : value.GetObject()) {
|
||||||
|
if (member.value.IsArray() || member.value.IsObject()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue