diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lllogininstance.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llstartup.cpp | 6 | 
2 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp index 00de6a86e1..b20f89aa7c 100644 --- a/indra/newview/lllogininstance.cpp +++ b/indra/newview/lllogininstance.cpp @@ -568,6 +568,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia  	else  	{  		requested_options.append("basic-mode"); +		requested_options.append("inventory-basic");  	}  #endif diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index b390c933f7..1cbf99dbe7 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1543,6 +1543,12 @@ bool idle_startup()   			}   		} +		LLSD inv_basic = response["inventory-basic"]; + 		if(inv_basic.isDefined()) + 		{ +			llinfos << "Basic inventory root folder id is " << inv_basic["folder_id"] << llendl; + 		} +  		LLSD buddy_list = response["buddy-list"];   		if(buddy_list.isDefined())   		{  | 
