From 48e87b644838ad0b59d6dfe7c3fddf4b96cf4971 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sun, 22 Mar 2009 18:25:04 +0000 Subject: Make single item inventory gives work across regions --- OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework/Communications/Cache') diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs index 4ea1e22..e590b9d 100644 --- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs +++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs @@ -790,11 +790,11 @@ namespace OpenSim.Framework.Communications.Cache if (m_commsManager.SecureInventoryService != null) { - m_commsManager.SecureInventoryService.QueryItem(item, m_session_id); + itemInfo = m_commsManager.SecureInventoryService.QueryItem(item, m_session_id); } else { - m_commsManager.InventoryService.QueryItem(item); + itemInfo = m_commsManager.InventoryService.QueryItem(item); } if (itemInfo != null) -- cgit v1.1