diff --git a/VectoCore/VectoCore/InputData/FileIO/JSON/JSONInputData.cs b/VectoCore/VectoCore/InputData/FileIO/JSON/JSONInputData.cs index a780e644173c1d02879c364c919533101fc7dcd1..4b3f4a0913805c863ac272469550690aac2dfe82 100644 --- a/VectoCore/VectoCore/InputData/FileIO/JSON/JSONInputData.cs +++ b/VectoCore/VectoCore/InputData/FileIO/JSON/JSONInputData.cs @@ -508,6 +508,9 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON Type = aux.GetEx<string>("Type"), Technology = aux.GetEx<string>("Technology") }; + if (aux["TechList"] != null) { + auxData.TechList = aux["TechList"].Select(x => x.ToString()).ToList(); // .Select(x => x.ToString).ToArray(); + } var auxFile = aux["Path"]; retVal.Add(auxData);