aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorMelanie2011-07-10 18:16:09 +0200
committerMelanie2011-07-10 18:16:09 +0200
commitb59b1ff3d9bc9fd32d0bca087b5a733f38f43d6b (patch)
treef21bd06b0a983e0c790ac702a804b48bf6e0f3e5 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
parentDammit, loggin the type of an exception without providing the FULL DUMP is NOT (diff)
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC_OLD-b59b1ff3d9bc9fd32d0bca087b5a733f38f43d6b.zip
opensim-SC_OLD-b59b1ff3d9bc9fd32d0bca087b5a733f38f43d6b.tar.gz
opensim-SC_OLD-b59b1ff3d9bc9fd32d0bca087b5a733f38f43d6b.tar.bz2
opensim-SC_OLD-b59b1ff3d9bc9fd32d0bca087b5a733f38f43d6b.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
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);