From 3ddf9da1f417f50f9e5b10afa963ea7e74a1d885 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 27 Sep 2007 13:51:16 +0000 Subject: [PATCH] * Tleiades patch #445 - the inventory folders displayed does not show the expected folder icons Tahnx, Tleiades; keep up the good work! --- OpenSim/Framework/Communications/LoginService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 64e323dd78..4e6aa803dc 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs @@ -252,8 +252,8 @@ namespace OpenSim.Framework.UserManagement TempHash["folder_id"] = tempFolderID.ToStringHyphenated(); TempHash["name"] = ifb.name; TempHash["parent_id"] = tempParentID.ToStringHyphenated(); - TempHash["type_default"] = ifb.type; - TempHash["version"] = ifb.version+1; + TempHash["type_default"] = (Int32)ifb.type; + TempHash["version"] = (Int32)ifb.version+1; temp.Add(TempHash); }