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

0.6.9-post-fixes
Melanie 2010-09-26 23:50:55 +01:00
parent 8deaa1ead2
commit f0dd530e76
1 changed files with 2 additions and 1 deletions

View File

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