diff options
author | Justin Clark-Casey (justincc) | 2010-04-30 20:05:57 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-04-30 20:05:57 +0100 |
commit | 0b8b302aa0f2ee25be5cbdfefe232459e6e5b778 (patch) | |
tree | 8108a73ddf306c5f011e7bf91fb8ead5b6a678aa /OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs | |
parent | take out some debug logging in the sqlite db adaptor (diff) | |
download | opensim-SC_OLD-0b8b302aa0f2ee25be5cbdfefe232459e6e5b778.zip opensim-SC_OLD-0b8b302aa0f2ee25be5cbdfefe232459e6e5b778.tar.gz opensim-SC_OLD-0b8b302aa0f2ee25be5cbdfefe232459e6e5b778.tar.bz2 opensim-SC_OLD-0b8b302aa0f2ee25be5cbdfefe232459e6e5b778.tar.xz |
Fix a bunch of issues that crop up after the naive porting of the new sqlite db from master to 0.6.9
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs index 0d63dea..23cdfd4 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteAssetData.cs | |||
@@ -234,8 +234,7 @@ namespace OpenSim.Data.SQLiteLegacy | |||
234 | AssetBase asset = new AssetBase( | 234 | AssetBase asset = new AssetBase( |
235 | new UUID((String)row["UUID"]), | 235 | new UUID((String)row["UUID"]), |
236 | (String)row["Name"], | 236 | (String)row["Name"], |
237 | Convert.ToSByte(row["Type"]), | 237 | Convert.ToSByte(row["Type"]) |
238 | UUID.Zero.ToString() | ||
239 | ); | 238 | ); |
240 | 239 | ||
241 | asset.Description = (String) row["Description"]; | 240 | asset.Description = (String) row["Description"]; |