diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-03-28 23:00:33 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-03-28 23:00:33 +0300 |
commit | ffc4f262b259c6085773c60177c17f8339237221 (patch) | |
tree | 55b216ee03933fc3ba054e44d2596bdf5fe13c88 /indra | |
parent | 3bf9c78f564f0b6c4fd79163bd63c0a6c1fab7cb (diff) |
SL-18003 Improve dupplicate prevention #2
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerinventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index 8ec7719ade..c7819c9a54 100644 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -695,7 +695,7 @@ void LLViewerInventoryCategory::setFetching(LLViewerInventoryCategory::EFetchTyp } mFetching = fetching; } - else if (fetching = FETCH_NONE) + else if (fetching == FETCH_NONE) { mDescendentsRequested.stop(); mFetching = fetching; |