From 959872315f67a1a33a2bae7330749f7dd74a4774 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Sat, 8 Aug 2015 12:12:50 -0700
Subject: WARNING: massive refactor to follow libomv's latest changes regarding
inventory folders. The newest version of libomv itself is committed here.
Basically, everything that was using the AssetType enum has been combed
through; many of those uses were changed to the new FolderType enum. This
means that from now on, [new] root folders have code 8 (FolderType.Root), as
the viewers expect, as opposed to 9, which was what we had been doing. Normal
folders are as they were, -1. Also now sending folder code 100 for Suitcase
folders to viewers, with no filter. All tests pass, but fingers crossed!
---
OpenSim/Services/Interfaces/IInventoryService.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'OpenSim/Services/Interfaces')
diff --git a/OpenSim/Services/Interfaces/IInventoryService.cs b/OpenSim/Services/Interfaces/IInventoryService.cs
index 1e8652c..4289bba 100644
--- a/OpenSim/Services/Interfaces/IInventoryService.cs
+++ b/OpenSim/Services/Interfaces/IInventoryService.cs
@@ -67,7 +67,7 @@ namespace OpenSim.Services.Interfaces
///
///
///
- InventoryFolderBase GetFolderForType(UUID userID, AssetType type);
+ InventoryFolderBase GetFolderForType(UUID userID, FolderType type);
///
/// Gets everything (folders and items) inside a folder
--
cgit v1.1