SL-12733 FIXED Default Creation Permissions for Objects is ignored after a relog
parent
d8b47149aa
commit
08b75b5ee7
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue