mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
Send the creation-date of items to the viewer. This fixes Mantis#2769.
This commit is contained in:
@@ -1734,8 +1734,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
inventoryReply.InventoryData[0].AssetID = item.AssetID;
|
||||
inventoryReply.InventoryData[0].CreatorID = item.Creator;
|
||||
inventoryReply.InventoryData[0].BaseMask = item.BasePermissions;
|
||||
inventoryReply.InventoryData[0].CreationDate =
|
||||
(int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
|
||||
inventoryReply.InventoryData[0].CreationDate = item.CreationDate;
|
||||
|
||||
inventoryReply.InventoryData[0].Description = Utils.StringToBytes(item.Description);
|
||||
inventoryReply.InventoryData[0].EveryoneMask = item.EveryOnePermissions;
|
||||
inventoryReply.InventoryData[0].FolderID = item.Folder;
|
||||
|
||||
Reference in New Issue
Block a user