Gkv8 sendet an Kundenapp

Bei Fehler wird es aufm App8 als ResultXML gespeichert
This commit is contained in:
2024-10-30 11:43:23 +01:00
parent 277dfa446a
commit a5cfbdfc96
12 changed files with 224 additions and 190 deletions

View File

@@ -264,7 +264,7 @@ namespace Host
{
var xml_obj = GkvServerResultXml.GetResultXml(file.FullName);
if (xml_obj is GkvServerResultXml xml && oids.Contains(xml.Oid))
if (xml_obj is GkvServerResultXml xml && oids.Contains(xml.ProtokollOid))
continue;
file.Delete();
@@ -297,7 +297,7 @@ namespace Host
if (xml is null)
continue;
dict.Add(xml.Oid, GkvServerResultXml.ToDC(xml));
dict.Add(xml.ProtokollOid, GkvServerResultXml.ToDC(xml));
}
return dict;
}