From 9973bf5d3ee38c00439727b1fb720d0888cced80 Mon Sep 17 00:00:00 2001 From: CreepyCrafter24 <33260128+CreepyCrafter24@users.noreply.github.com> Date: Sun, 20 Oct 2019 15:20:54 +0200 Subject: [PATCH] Fixed Crash --- UpTool2/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UpTool2/MainForm.cs b/UpTool2/MainForm.cs index f398493..1592014 100644 --- a/UpTool2/MainForm.cs +++ b/UpTool2/MainForm.cs @@ -256,10 +256,11 @@ namespace UpTool2 XElement repos = meta.Element("Repo"); repos.RemoveNodes(); tmp_appslist.ForEach(app => { - XElement el = new XElement(app.ID.ToString(), + XElement el = new XElement("App", new XElement("Name", app.name), new XElement("Description", app.description), new XElement("Version", app.version), + new XElement("ID", app.ID.ToString()), new XElement("File", app.file), new XElement("Hash", app.hash), new XElement("MainFile", app.mainFile),