mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Added checks to the last commit to make sure the xml files exist before it tries to load them.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user