* Fixed a bug in Simian.IsSimianEnabled (since the default module strings follow the form OpenSim.Services.Connectors.dll:SimianGridServiceConnector instead of SimianGridServiceConnector)

slimupdates
John Hurliman 2010-03-15 20:52:41 -07:00
parent 4e180e84e2
commit cffe39b95f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public static class Simian
if (config.Configs["Modules"] != null)
{
string module = config.Configs["Modules"].GetString(moduleName);
return !String.IsNullOrEmpty(module) && module == connectorName;
return !String.IsNullOrEmpty(module) && module.EndsWith(connectorName);
}
return false;