diff --git a/indra/newview/NACLantispam.cpp b/indra/newview/NACLantispam.cpp index 3d55bede7d..eb2e9f792a 100644 --- a/indra/newview/NACLantispam.cpp +++ b/indra/newview/NACLantispam.cpp @@ -656,8 +656,11 @@ void NACLAntiSpamRegistry::processObjectPropertiesFamily(LLMessageSystem* msg) { AntispamObjectData data = found->second; - data.mName = LLSLURL("objectim", id, "").getSLURLString() + "?name=" + LLURI::escape(name) + "&owner=" + owner_id.asString(); - notify(data); + if (!isBlockedOnQueue(data.mQueue, owner_id)) + { + data.mName = LLSLURL("objectim", id, "").getSLURLString() + "?name=" + LLURI::escape(name) + "&owner=" + owner_id.asString(); + notify(data); + } mObjectData.erase(found); }