From dd0dbf205cfb97451b5180bbc1cab6d2b40cbfbc Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:18:41 +0200 Subject: #3612 Handle missing capabilities instead of blocking further downloads Landmarks that failed due to missing caps were blocked from being rerequested. --- indra/llmessage/llassetstorage.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'indra/llmessage/llassetstorage.cpp') diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp index 10fd56a68e..4c3acb27f4 100644 --- a/indra/llmessage/llassetstorage.cpp +++ b/indra/llmessage/llassetstorage.cpp @@ -1316,6 +1316,9 @@ const char* LLAssetStorage::getErrorString(S32 status) case LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE: return "Asset request: asset not found in database"; + case LL_ERR_NO_CAP: + return "Asset request: region or asset capability not available"; + case LL_ERR_EOF: return "End of file"; -- cgit v1.3