aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index ecf10e4..99552f1 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -7614,13 +7614,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
7614 IInventoryAccessModule invAccess = m_scene.RequestModuleInterface<IInventoryAccessModule>(); 7614 IInventoryAccessModule invAccess = m_scene.RequestModuleInterface<IInventoryAccessModule>();
7615 if (invAccess != null) 7615 if (invAccess != null)
7616 { 7616 {
7617 if (!invAccess.GetAgentInventoryItem(this, itemID, requestID)) 7617 if (!invAccess.CanGetAgentInventoryItem(this, itemID, requestID))
7618 return false; 7618 return false;
7619
7620 } 7619 }
7621 else 7620 else
7621 {
7622 return false; 7622 return false;
7623 7623 }
7624 } 7624 }
7625 } 7625 }
7626 } 7626 }
@@ -7634,7 +7634,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
7634 { 7634 {
7635 AssetUploadRequestPacket request = (AssetUploadRequestPacket)Pack; 7635 AssetUploadRequestPacket request = (AssetUploadRequestPacket)Pack;
7636 7636
7637
7638 // m_log.Debug("upload request " + request.ToString()); 7637 // m_log.Debug("upload request " + request.ToString());
7639 // m_log.Debug("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionId).ToString()); 7638 // m_log.Debug("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionId).ToString());
7640 UUID temp = UUID.Combine(request.AssetBlock.TransactionID, SecureSessionId); 7639 UUID temp = UUID.Combine(request.AssetBlock.TransactionID, SecureSessionId);