diff options
author | Teravus Ovares | 2007-12-21 00:04:38 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-21 00:04:38 +0000 |
commit | 9961a5565fb4df0aaf4eac575f87986aa566e4ee (patch) | |
tree | 9c19a1e91008d4197198d03839f0db66c160e482 /OpenSim/Region/Storage | |
parent | * and another :/ (diff) | |
download | opensim-SC_OLD-9961a5565fb4df0aaf4eac575f87986aa566e4ee.zip opensim-SC_OLD-9961a5565fb4df0aaf4eac575f87986aa566e4ee.tar.gz opensim-SC_OLD-9961a5565fb4df0aaf4eac575f87986aa566e4ee.tar.bz2 opensim-SC_OLD-9961a5565fb4df0aaf4eac575f87986aa566e4ee.tar.xz |
*on more implicit use of .ToString() on deleting shapes in MonoSqliteDataStore
Diffstat (limited to 'OpenSim/Region/Storage')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs index bf521bd..af2fb85 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | |||
@@ -206,7 +206,7 @@ namespace OpenSim.DataStore.MonoSqlite | |||
206 | foreach (DataRow row in primRows) | 206 | foreach (DataRow row in primRows) |
207 | { | 207 | { |
208 | LLUUID uuid = new LLUUID((string) row["UUID"]); | 208 | LLUUID uuid = new LLUUID((string) row["UUID"]); |
209 | DataRow shapeRow = shapes.Rows.Find(uuid); | 209 | DataRow shapeRow = shapes.Rows.Find(Util.ToRawUuidString(uuid)); |
210 | if (shapeRow != null) | 210 | if (shapeRow != null) |
211 | { | 211 | { |
212 | shapeRow.Delete(); | 212 | shapeRow.Delete(); |