mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
The new secure inventory server mode (in r5590) can now be disabled from OpenSim.ini. Default is to use the new mode.
This commit is contained in:
@@ -146,7 +146,14 @@ namespace OpenSim.Framework.Communications.Cache
|
||||
CachedUserInfo userInfo = GetUserDetails(userID);
|
||||
if (userInfo != null)
|
||||
{
|
||||
m_commsManager.SecureInventoryService.RequestInventoryForUser(userID, userInfo.SessionID, userInfo.InventoryReceive);
|
||||
if (m_commsManager.SecureInventoryService != null)
|
||||
{
|
||||
m_commsManager.SecureInventoryService.RequestInventoryForUser(userID, userInfo.SessionID, userInfo.InventoryReceive);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_commsManager.InventoryService.RequestInventoryForUser(userID, userInfo.InventoryReceive);
|
||||
}
|
||||
//IInventoryServices invService = userInfo.GetInventoryService();
|
||||
//if (invService != null)
|
||||
//{
|
||||
|
||||
Reference in New Issue
Block a user