diff options
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteSimulationData.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteSimulationData.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs index b97653b..6875ed6 100644 --- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs | |||
@@ -1718,11 +1718,11 @@ namespace OpenSim.Data.SQLite | |||
1718 | if (!(row["DynAttrs"] is System.DBNull)) | 1718 | if (!(row["DynAttrs"] is System.DBNull)) |
1719 | { | 1719 | { |
1720 | //m_log.DebugFormat("[SQLITE]: DynAttrs type [{0}]", row["DynAttrs"].GetType()); | 1720 | //m_log.DebugFormat("[SQLITE]: DynAttrs type [{0}]", row["DynAttrs"].GetType()); |
1721 | prim.DynAttrs = DynAttrsOSDMap.FromXml((string)row["DynAttrs"]); | 1721 | prim.DynAttrs = DAMap.FromXml((string)row["DynAttrs"]); |
1722 | } | 1722 | } |
1723 | else | 1723 | else |
1724 | { | 1724 | { |
1725 | prim.DynAttrs = new DynAttrsOSDMap(); | 1725 | prim.DynAttrs = new DAMap(); |
1726 | } | 1726 | } |
1727 | 1727 | ||
1728 | return prim; | 1728 | return prim; |
@@ -2408,9 +2408,9 @@ namespace OpenSim.Data.SQLite | |||
2408 | s.Media = PrimitiveBaseShape.MediaList.FromXml((string)row["Media"]); | 2408 | s.Media = PrimitiveBaseShape.MediaList.FromXml((string)row["Media"]); |
2409 | 2409 | ||
2410 | if (!(row["DynAttrs"] is System.DBNull)) | 2410 | if (!(row["DynAttrs"] is System.DBNull)) |
2411 | s.DynAttrs = DynAttrsOSDMap.FromXml((string)row["DynAttrs"]); | 2411 | s.DynAttrs = DAMap.FromXml((string)row["DynAttrs"]); |
2412 | else | 2412 | else |
2413 | s.DynAttrs = new DynAttrsOSDMap(); | 2413 | s.DynAttrs = new DAMap(); |
2414 | 2414 | ||
2415 | return s; | 2415 | return s; |
2416 | } | 2416 | } |