Fixed: Improve error messaging if config file isn't formatted correctly

(cherry picked from commit 52b72925f9d42c896144dde3099dc19c397327b0)
pull/2147/head
Mark McDowall 10 months ago committed by Bogdan
parent dfda86aca3
commit ba344756b1

@ -422,14 +422,22 @@ namespace NzbDrone.Core.Configuration
throw new InvalidConfigFileException($"{_configFile} is corrupt. Please delete the config file and Prowlarr will recreate it."); throw new InvalidConfigFileException($"{_configFile} is corrupt. Please delete the config file and Prowlarr will recreate it.");
} }
return XDocument.Parse(_diskProvider.ReadAllText(_configFile)); var xDoc = XDocument.Parse(_diskProvider.ReadAllText(_configFile));
} var config = xDoc.Descendants(CONFIG_ELEMENT_NAME).ToList();
var xDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes")); if (config.Count != 1)
xDoc.Add(new XElement(CONFIG_ELEMENT_NAME)); {
throw new InvalidConfigFileException($"{_configFile} is invalid. Please delete the config file and Prowlarr will recreate it.");
}
return xDoc; return xDoc;
} }
var newXDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
newXDoc.Add(new XElement(CONFIG_ELEMENT_NAME));
return newXDoc;
}
} }
catch (XmlException ex) catch (XmlException ex)
{ {

Loading…
Cancel
Save