From 5ec3357a6ccf6b6f05d99105db8f510fd395f043 Mon Sep 17 00:00:00 2001 From: Alexei Arabadji Date: Fri, 11 Jun 2010 17:07:27 +0300 Subject: EXT-7762 FIXED Added check to avoid showing script errors from not owned objects. reviewed by Mike Antipov at https://codereview.productengine.com/secondlife/r/570/ --HG-- branch : product-engine --- indra/newview/llnearbychathandler.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'indra/newview') diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 4b5e765c4f..1fadb126e4 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -32,6 +32,7 @@ #include "llviewerprecompiledheaders.h" +#include "llagentdata.h" // for gAgentID #include "llnearbychathandler.h" #include "llbottomtray.h" @@ -367,6 +368,13 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, const LLSD &args) { if(gSavedSettings.getBOOL("ShowScriptErrors") == FALSE) return; + + // don't process debug messages from not owned objects, see EXT-7762 + if (gAgentID != chat_msg.mOwnerID) + { + return; + } + if (gSavedSettings.getS32("ShowScriptErrorsLocation")== 1)// show error in window //("ScriptErrorsAsChat")) { -- cgit v1.2.3