fix bug where prim persistence would fail if media had never been set

prebuild-update
Justin Clark-Casey (justincc) 2010-07-14 23:48:24 +01:00
parent 049ccba8d3
commit fc76ce0f46
1 changed files with 9 additions and 6 deletions

View File

@ -1919,6 +1919,8 @@ namespace OpenSim.Data.SQLite
row["Texture"] = s.TextureEntry;
row["ExtraParams"] = s.ExtraParams;
if (null != s.Media)
{
OSDArray meArray = new OSDArray();
foreach (MediaEntry me in s.Media)
{
@ -1928,6 +1930,7 @@ namespace OpenSim.Data.SQLite
row["Media"] = OSDParser.SerializeLLSDXmlString(meArray);
}
}
/// <summary>
/// Persistently store a prim.