diff options
| author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-10-04 00:31:40 +0300 | 
|---|---|---|
| committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-10-04 00:31:40 +0300 | 
| commit | 8006d0e628994210ed30a63b20e824d0691386f9 (patch) | |
| tree | 4947f80ff0020fb5043632f5a67f356e165c1a36 | |
| parent | 5ff1be79a352390ecde5bdfb9b59e609d3ced29e (diff) | |
Reverted 208c0e0
| -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; | 
