diff options
| -rw-r--r-- | indra/newview/llappearancemgr.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 1b50a3fbfd..92e3cd0279 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -3477,13 +3477,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; | 
