summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2016-09-26 10:54:07 -0700
committerRider Linden <rider@lindenlab.com>2016-09-26 10:54:07 -0700
commit9e25ba239044b9708259ea3d4617cb6cfdcea458 (patch)
tree1032b5715b1a7caf2a05f3100f981d85471e0a55 /indra
parentd258fe40353642b20524ef320b70e6b9bf0f8ec4 (diff)
Back out a change that never got merged into viewer-release.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llappearancemgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index 7b9b91a176..9d3ad9b731 100644
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -3424,13 +3424,13 @@ void LLAppearanceMgr::serverAppearanceUpdateCoro(LLCoreHttpUtil::HttpCoroutineAd
}
else
{
- if (cofVersion <= lastRcv)
+ if (cofVersion < lastRcv)
{
LL_WARNS("Avatar") << "Have already received update for cof version " << lastRcv
<< " but requesting for " << cofVersion << LL_ENDL;
return;
}
- if (lastReq >= cofVersion)
+ if (lastReq > cofVersion)
{
LL_WARNS("Avatar") << "Request already in flight for cof version " << lastReq
<< " but requesting for " << cofVersion << LL_ENDL;