Skip to content
Snippets Groups Projects
Commit 8a920459 authored by Steven Bennetts's avatar Steven Bennetts
Browse files

Partial fix for EXT-1123 (this shouldn't merit a notification), but we should...

Partial fix for EXT-1123 (this shouldn't merit a notification), but we should investigate why these requests are failing in the first place.
parent 5433dbee
No related branches found
No related tags found
No related merge requests found
......@@ -128,14 +128,16 @@ void LLLandmarkList::processGetAssetReply(
else
{
LLViewerStats::getInstance()->incStat( LLViewerStats::ST_DOWNLOAD_FAILED );
// SJB: No use case for a notification here. Use lldebugs instead
if( LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE == status )
{
LLNotifications::instance().add("LandmarkMissing");
LL_DEBUGS("Landmarks") << "Missing Landmark" << LL_ENDL;
//LLNotifications::instance().add("LandmarkMissing");
}
else
{
LLNotifications::instance().add("UnableToLoadLandmark");
LL_DEBUGS("Landmarks") << "Unable to load Landmark" << LL_ENDL;
//LLNotifications::instance().add("UnableToLoadLandmark");
}
gLandmarkList.mBadList.insert(uuid);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment