From 055ea73b578eb41cd91b15aed50d0caff9606320 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 26 Sep 2008 15:29:30 +0000 Subject: * minor: fix lolbug in RestInventoryService spotted by jhurliman --- OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs') diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs index ab40b5d..a402989 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs @@ -1391,8 +1391,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory private bool ItemHasChanged(InventoryItemBase newf, InventoryItemBase oldf) { - return (newf.Name != oldf.Name - || newf.Folder != oldf.Description + return (newf.Name != oldf.Name + || newf.Folder != oldf.Folder || newf.Description != oldf.Description || newf.Owner != oldf.Owner || newf.Creator != oldf.Creator -- cgit v1.1