*on more implicit use of .ToString() on deleting shapes in MonoSqliteDataStore

afrisby
Teravus Ovares 2007-12-21 00:04:38 +00:00
parent 23f761231d
commit 9961a5565f
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ namespace OpenSim.DataStore.MonoSqlite
foreach (DataRow row in primRows)
{
LLUUID uuid = new LLUUID((string) row["UUID"]);
DataRow shapeRow = shapes.Rows.Find(uuid);
DataRow shapeRow = shapes.Rows.Find(Util.ToRawUuidString(uuid));
if (shapeRow != null)
{
shapeRow.Delete();