From dd893bab417fac31ff06017ce216f0daff51cfdd Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 9 Jul 2014 15:29:38 -0400 Subject: [PATCH] Work towards curing Issue 1586: Singularity crashes when adding classified adds on opensim grids (untested in SL) --- indra/newview/llavatarpropertiesprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llavatarpropertiesprocessor.cpp b/indra/newview/llavatarpropertiesprocessor.cpp index 9ec769f9f..fb3298a5e 100644 --- a/indra/newview/llavatarpropertiesprocessor.cpp +++ b/indra/newview/llavatarpropertiesprocessor.cpp @@ -488,7 +488,7 @@ void LLAvatarPropertiesProcessor::notifyObservers(const LLUUID& id,void* data, E // only notify observers for the same agent, or if the observer // didn't know the agent ID and passed a NULL id. const LLUUID &agent_id = oi->first; - if (agent_id == id || agent_id.isNull()) + if (agent_id == id || (type == APT_CLASSIFIED_INFO && agent_id.isNull())) // Singu Note: Classifieds are the only ones registering null ids. { oi->second->processProperties(data,type); }