Change default destination of deleted items to the trash folder. Everything
else still goes to L&Fmysql-performance
parent
d2c1610d17
commit
5ee79c62bf
|
@ -1721,12 +1721,21 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
}
|
||||
|
||||
if (folderID == UUID.Zero && folder == null)
|
||||
{
|
||||
if (action == DeRezAction.Delete)
|
||||
{
|
||||
// Deletes go to trash by default
|
||||
//
|
||||
folder = InventoryService.GetFolderForType(userID, AssetType.TrashFolder);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Catch all. Use lost & found
|
||||
//
|
||||
|
||||
folder = InventoryService.GetFolderForType(userID, AssetType.LostAndFoundFolder);
|
||||
}
|
||||
}
|
||||
|
||||
if (folder == null) // None of the above
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue