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()) {
|
||||
move(member.name.GetString(), std::move(threads));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (auto &member : value.GetObject()) {
|
||||
if (member.value.IsArray() || member.value.IsObject()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue