When receiving intersim IM, don't let the spoof protection bomb

viewer-2-initial-appearance
Melanie 2010-09-26 23:50:55 +01:00
parent dc49057c8a
commit 6f78358b09
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
if (m_TransferModule != null)
{
im.fromAgentName = client.FirstName + " " + client.LastName;
if (client != null)
im.fromAgentName = client.FirstName + " " + client.LastName;
m_TransferModule.SendInstantMessage(im,
delegate(bool success)
{