mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
*on more implicit use of .ToString() on deleting shapes in MonoSqliteDataStore
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user