aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-09 18:35:09 +0000
committerJustin Clarke Casey2008-12-09 18:35:09 +0000
commit762712c02e4abf332d2d9a0ba583d6fe6f406aff (patch)
tree673471a2715e6a73dc051dbbd5b8dbed57cde8c2 /OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
parent* Apply terrain flip patch from http://opensimulator.org/mantis/view.php?id=2315 (diff)
downloadopensim-SC_OLD-762712c02e4abf332d2d9a0ba583d6fe6f406aff.zip
opensim-SC_OLD-762712c02e4abf332d2d9a0ba583d6fe6f406aff.tar.gz
opensim-SC_OLD-762712c02e4abf332d2d9a0ba583d6fe6f406aff.tar.bz2
opensim-SC_OLD-762712c02e4abf332d2d9a0ba583d6fe6f406aff.tar.xz
* Actually update subfolders of parent folders in the inventory cache when a folder gets moved
* This was causing inventory folder transfer code to not work properly (this is still temporarily disabled)
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs')
-rw-r--r--OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
index 45102d8..b4f3e9f 100644
--- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
+++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
@@ -274,8 +274,8 @@ namespace OpenSim.Framework.Communications.Cache
274 if (!userProfile.MoveFolder(folderID, parentID)) 274 if (!userProfile.MoveFolder(folderID, parentID))
275 { 275 {
276 m_log.ErrorFormat( 276 m_log.ErrorFormat(
277 "[AGENT INVENTORY]: Failed to move folder for user {0} {1}", 277 "[AGENT INVENTORY]: Failed to move folder {0} to {1} for user {2}",
278 remoteClient.Name, remoteClient.AgentId); 278 folderID, parentID, remoteClient.Name);
279 } 279 }
280 } 280 }
281 else 281 else