diff options
author | Aura Linden <aura@lindenlab.com> | 2014-07-22 17:24:00 -0700 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2014-07-22 17:24:00 -0700 |
commit | 3d4acb535d75c4cc78c93dee318bcffaca691237 (patch) | |
tree | 6bde5b24d7bf8629962af465be3a38aa32149edb /indra/newview | |
parent | 2121ffcdabf97745f1fc4db6d5183b1d8cb57ce9 (diff) |
Appears to fix MAINT-4184
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/lltexturefetch.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 9ea46cab68..fcf0d88495 100755 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -2648,7 +2648,8 @@ bool LLTextureFetch::createRequest(FTType f_type, const std::string& url, const worker->setImagePriority(priority); worker->setDesiredDiscard(desired_discard, desired_size); worker->setCanUseHTTP(can_use_http); - worker->setUrl(url); + + //worker->setUrl(url); //MAINT-4184 this line seems to be the cause and url is always blank. if (!worker->haveWork()) { worker->setState(LLTextureFetchWorker::INIT); |