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

This commit is contained in:
Teravus Ovares
2007-12-21 00:04:38 +00:00
parent 23f761231d
commit 9961a5565f

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();