mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 03:36:04 +08:00
Removed ignoreCase=true from the call to Type.GetInterface, because, well, we don't want to ignore case. And this seems to be causing problems in mono 4.3.
This commit is contained in:
@@ -67,7 +67,7 @@ namespace OpenSim.Region.ClientStack
|
||||
{
|
||||
if (pluginType.IsPublic)
|
||||
{
|
||||
Type typeInterface = pluginType.GetInterface("IClientNetworkServer", true);
|
||||
Type typeInterface = pluginType.GetInterface("IClientNetworkServer");
|
||||
|
||||
if (typeInterface != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user