Oops.. fix the null on the correct place.. jenkis may now fail for another reason

httptests
UbitUmarov 2017-01-21 00:18:25 +00:00
parent 48f137599f
commit c0231fe169
1 changed files with 3 additions and 2 deletions

View File

@ -165,9 +165,10 @@ namespace OpenSim.Region.OptionalModules
string response = DoCommonChecks(objectCount, sog.OwnerID, newParcel, scene);
if (response != null && m_dialogModule != null)
if (response != null)
{
m_dialogModule.SendAlertToUser(sog.OwnerID, response);
if(m_dialogModule != null)
m_dialogModule.SendAlertToUser(sog.OwnerID, response);
return false;
}
return true;