SL-17429 Message user when their inventory hits AIS2 limits
parent
6586055320
commit
5b9b4fcf66
|
|
@ -30,8 +30,10 @@
|
|||
#include "llagent.h"
|
||||
#include "llappviewer.h"
|
||||
#include "llcallbacklist.h"
|
||||
#include "llinventorypanel.h"
|
||||
#include "llinventorymodel.h"
|
||||
#include "llinventorypanel.h"
|
||||
#include "llnotificationsutil.h"
|
||||
#include "llstartup.h"
|
||||
#include "llviewercontrol.h"
|
||||
#include "llviewerinventory.h"
|
||||
#include "llviewermessage.h"
|
||||
|
|
@ -802,12 +804,24 @@ void BGFolderHttpHandler::processFailure(LLCore::HttpStatus status, LLCore::Http
|
|||
|
||||
if(status == LLCore::HttpStatus(HTTP_FORBIDDEN))
|
||||
{
|
||||
// too large, split into two, assume that this isn't the library
|
||||
// Too large, split into two if possible
|
||||
if (gDisconnected || LLApp::isExiting())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
const std::string url(gAgent.getRegionCapability("FetchInventoryDescendents2"));
|
||||
if (url.empty())
|
||||
{
|
||||
LL_WARNS(LOG_INV) << "Failed to get AIS2 cap" << LL_ENDL;
|
||||
return;
|
||||
}
|
||||
|
||||
S32 size = mRequestSD["folders"].size();
|
||||
|
||||
if (!gDisconnected && !LLApp::isExiting() && !url.empty() && size > 1)
|
||||
if (size > 1)
|
||||
{
|
||||
// Can split, assume that this isn't the library
|
||||
LLSD folders;
|
||||
uuid_vec_t recursive_cats;
|
||||
LLSD::array_iterator iter = mRequestSD["folders"].beginArray();
|
||||
|
|
@ -838,6 +852,11 @@ void BGFolderHttpHandler::processFailure(LLCore::HttpStatus status, LLCore::Http
|
|||
gInventory.requestPost(false, url, request_body, handler, "Inventory Folder");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Can't split
|
||||
LLNotificationsUtil::add("InventoryLimitReachedAIS");
|
||||
}
|
||||
}
|
||||
|
||||
// This was originally the request retry logic for the inventory
|
||||
|
|
|
|||
|
|
@ -6369,6 +6369,14 @@ Your trash is overflowing. This may cause problems logging in.
|
|||
yestext="Check trash folder"/>
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="notifytip.tga"
|
||||
name="InventoryLimitReachedAIS"
|
||||
type="notifytip">
|
||||
Your inventory is experiencing issues. Please, contact support.
|
||||
<tag>fail</tag>
|
||||
</notification>
|
||||
|
||||
<notification
|
||||
icon="alertmodal.tga"
|
||||
name="ConfirmClearBrowserCache"
|
||||
|
|
|
|||
Loading…
Reference in New Issue