diff options
author | Ansariel <none@none> | 2016-05-10 19:35:41 +0200 |
---|---|---|
committer | Ansariel <none@none> | 2016-05-10 19:35:41 +0200 |
commit | 709c15dc233134370425687cfd429b48d6205afa (patch) | |
tree | 70e9095df18c2268e2cc6b8cc9f21926cd862f84 /indra | |
parent | d37003a631357b49155d8e5c0bd67029458802d4 (diff) |
Display correct attempt for requesting region capabilities at startup
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerregion.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index cac2ed8585..899ab3a371 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -264,17 +264,18 @@ void LLViewerRegionImpl::requestBaseCapabilitiesCoro(U64 regionHandle) } S32 id = ++mHttpResponderID; - ++mSeedCapAttempts; LLSD capabilityNames = LLSD::emptyArray(); buildCapabilityNames(capabilityNames); LL_INFOS("AppInit", "Capabilities") << "Requesting seed from " << url - << " (attempt #" << mSeedCapAttempts << ")" << LL_ENDL; + << " (attempt #" << mSeedCapAttempts + 1 << ")" << LL_ENDL; regionp = NULL; result = httpAdapter->postAndSuspend(httpRequest, url, capabilityNames); + ++mSeedCapAttempts; + regionp = LLWorld::getInstance()->getRegionFromHandle(regionHandle); if (!regionp) //region was removed { |