* Another minor GenericMessage fix - If we assume the method names are case-insensitive, we should process them as such.
parent
00a0f4a286
commit
3b0eb958a8
|
@ -642,6 +642,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
|
||||
public bool AddGenericPacketHandler(string MethodName, GenericMessage handler)
|
||||
{
|
||||
MethodName = MethodName.ToLower().Trim();
|
||||
|
||||
bool result = false;
|
||||
lock (m_genericPacketHandlers)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue