summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRye Mutt <rye@alchemyviewer.org>2022-09-28 09:55:57 -0400
committerRye Mutt <rye@alchemyviewer.org>2022-09-28 09:55:57 -0400
commitd1701fb5b1a1cef281b04a8004f133ff7efa7db3 (patch)
tree54de54bce0733dbe5b98965390e8d51178ca7bb4 /indra
parent9f633e087fa0855ee8358e3e84924872ec5d965f (diff)
Fix small bug in unavail skin info processing
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llmeshrepository.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 3ed7e9289d..f937754368 100644
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -2923,7 +2923,7 @@ void LLMeshRepoThread::notifyLoadedMeshes()
}
}
- if (! mSkinInfoQ.empty() || ! mDecompositionQ.empty())
+ if (!mSkinInfoQ.empty() || !mSkinUnavailableQ.empty() || ! mDecompositionQ.empty())
{
if (mMutex->trylock())
{