diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloaterperms.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 2 | 
2 files changed, 2 insertions, 3 deletions
| diff --git a/indra/newview/llfloaterperms.cpp b/indra/newview/llfloaterperms.cpp index 2281ea1496..528632a866 100644 --- a/indra/newview/llfloaterperms.cpp +++ b/indra/newview/llfloaterperms.cpp @@ -177,7 +177,6 @@ void LLFloaterPermsDefault::sendInitialPerms()  	if(!mCapSent)  	{  		updateCap(); -		setCapSent(true);  	}  } @@ -239,7 +238,7 @@ void LLFloaterPermsDefault::updateCapCoro(std::string url)          {              const std::string& reason = status.toString();              // Do not display the same error more than once in a row -            if (reason != previousReason) +            if ((reason != previousReason) && mCapSent)              {                  previousReason = reason;                  LLSD args; diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index 75e707aaa3..e91f71733b 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -3137,7 +3137,7 @@ void LLViewerRegion::setCapabilitiesReceived(bool received)  	{  		mCapabilitiesReceivedSignal(getRegionID()); -		//LLFloaterPermsDefault::sendInitialPerms(); +		LLFloaterPermsDefault::sendInitialPerms();  		// This is a single-shot signal. Forget callbacks to save resources.  		mCapabilitiesReceivedSignal.disconnect_all_slots(); | 
