summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-06-17 15:46:22 -0700
committerRider Linden <rider@lindenlab.com>2015-06-17 15:46:22 -0700
commit1060094eec34dfd355e2995409cf37f3a84240d0 (patch)
treeda61b2173d8defbc4d853d801d6c97d12736b090 /indra
parent82e34f1683f67b8394306b1569260508a213b99e (diff)
Distressing. A variable got autocorrected to 'false' but the compiler didn't catch it.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llflickrconnect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llflickrconnect.cpp b/indra/newview/llflickrconnect.cpp
index 4ec3344b48..570b93c33c 100644
--- a/indra/newview/llflickrconnect.cpp
+++ b/indra/newview/llflickrconnect.cpp
@@ -306,7 +306,7 @@ void LLFlickrConnect::flickrConnectedCoro(LLCoros::self& self, bool autoConnect)
httpOpts->setFollowRedirects(false);
- LLSD result = httpAdapter->getAndYield(self, httpRequest, getFlickrConnectURL("/connection", true), false);
+ LLSD result = httpAdapter->getAndYield(self, httpRequest, getFlickrConnectURL("/connection", true), httpOpts);
LLSD httpResults = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS];
LLCore::HttpStatus status = LLCoreHttpUtil::HttpCoroutineAdapter::getStatusFromLLSD(httpResults);