* Fixed a bug in Simian.IsSimianEnabled (since the default module strings follow the form OpenSim.Services.Connectors.dll:SimianGridServiceConnector instead of SimianGridServiceConnector)
parent
4e180e84e2
commit
cffe39b95f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue