*on more implicit use of .ToString() on deleting shapes in MonoSqliteDataStore
parent
23f761231d
commit
9961a5565f
OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite
|
@ -206,7 +206,7 @@ namespace OpenSim.DataStore.MonoSqlite
|
||||||
foreach (DataRow row in primRows)
|
foreach (DataRow row in primRows)
|
||||||
{
|
{
|
||||||
LLUUID uuid = new LLUUID((string) row["UUID"]);
|
LLUUID uuid = new LLUUID((string) row["UUID"]);
|
||||||
DataRow shapeRow = shapes.Rows.Find(uuid);
|
DataRow shapeRow = shapes.Rows.Find(Util.ToRawUuidString(uuid));
|
||||||
if (shapeRow != null)
|
if (shapeRow != null)
|
||||||
{
|
{
|
||||||
shapeRow.Delete();
|
shapeRow.Delete();
|
||||||
|
|
Loading…
Reference in New Issue