Added checks to the last commit to make sure the xml files exist before it tries to load them.
parent
cf203cf5ee
commit
369fb2e623
|
@ -36,8 +36,11 @@ namespace OpenSim.Framework.Communications.Caches
|
|||
this.CreateLibraryItems();
|
||||
|
||||
string filePath = Path.Combine(Util.configDir(), "OpenSimLibrary.xml");
|
||||
XmlConfigSource source = new XmlConfigSource(filePath);
|
||||
this.ReadItemsFromFile(source);
|
||||
if (File.Exists(filePath))
|
||||
{
|
||||
XmlConfigSource source = new XmlConfigSource(filePath);
|
||||
this.ReadItemsFromFile(source);
|
||||
}
|
||||
}
|
||||
|
||||
private void CreateLibraryItems()
|
||||
|
|
|
@ -361,8 +361,11 @@ namespace OpenSim.Region.GridInterfaces.Local
|
|||
*/
|
||||
|
||||
string filePath = Path.Combine(Util.configDir(), "OpenSimAssetSet.xml");
|
||||
if(File.Exists(filePath))
|
||||
{
|
||||
XmlConfigSource source = new XmlConfigSource(filePath);
|
||||
ReadAssetDetails(source);
|
||||
}
|
||||
}
|
||||
|
||||
protected void ReadAssetDetails(IConfigSource source)
|
||||
|
|
Loading…
Reference in New Issue