Fix of 2.3.2 regression in configuration layer (reading of nullable

boolean vectors)
Fix of Filament overrides on saved 3MF MMU profiles are broken #6711
This commit is contained in:
Vojtech Bubnik 2021-07-14 10:13:52 +02:00
parent 95a84fa826
commit 16e41ab819

View File

@ -1363,7 +1363,7 @@ public:
unsigned char new_value = 0;
if (item_str == "nil") {
if (NULLABLE)
this->values.push_back(nil_value());
new_value = nil_value();
else
throw ConfigurationError("Deserializing nil into a non-nullable object");
} else if (item_str == "1") {