3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-12 17:11:06 +02:00

Merge branch 'kasen/core' into merge-hifi-master

This commit is contained in:
David Rowe 2020-04-09 18:57:11 +12:00
commit 761bc69faa

View file

@ -734,7 +734,7 @@ BatchPointer Deserializer::readBatch(const json& node) {
std::string batchName;
if (node.count(keys::name)) {
batchName = node[keys::name];
batchName = node.value(keys::name, "");
}
BatchPointer result = std::make_shared<Batch>(batchName);
auto& batch = *result;