diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-11-28 21:23:38 +0200 |
---|---|---|
committer | akleshchev <117672381+akleshchev@users.noreply.github.com> | 2023-12-06 01:02:42 +0200 |
commit | f4307bed264cc4c5502e8f0552cbf368e23edc28 (patch) | |
tree | f1c8bf6a2c0b5c1280a53616ce7e0c40555072c0 /indra/newview/llinventorymodel.cpp | |
parent | c409236dacc215231e8404133c2613d5ee90c990 (diff) |
SL-20181 Don't force fetch if vesion is unknown
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rw-r--r-- | indra/newview/llinventorymodel.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 8583cca103..01bf7b3270 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -3546,6 +3546,9 @@ void LLInventoryModel::processUpdateCreateInventoryItem(LLMessageSystem* msg, vo gInventoryCallbacks.fire(callback_id, item_id); + // Message system at the moment doesn't support Thumbnails and potential + // newer features so just rerequest whole item + // // todo: instead of unpacking message fully, // grab only an item_id, then fetch LLInventoryModelBackgroundFetch::instance().scheduleItemFetch(item_id, true); |