diff options
author | UbitUmarov | 2016-11-24 14:39:08 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-24 14:39:08 +0000 |
commit | 5202ae7bb4b3e20aad762811195922da6926a54c (patch) | |
tree | 8d77ea056dc7e2af1a2bc5e6e44c7ba40eab027f /OpenSim/Data/PGSQL | |
parent | fix llRez(AtRoot/Object) error messages on shared code path (diff) | |
download | opensim-SC-5202ae7bb4b3e20aad762811195922da6926a54c.zip opensim-SC-5202ae7bb4b3e20aad762811195922da6926a54c.tar.gz opensim-SC-5202ae7bb4b3e20aad762811195922da6926a54c.tar.bz2 opensim-SC-5202ae7bb4b3e20aad762811195922da6926a54c.tar.xz |
revert changes to asset desc size, my bad.. this field will possible go away in future
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLAssetData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLAssetData.cs b/OpenSim/Data/PGSQL/PGSQLAssetData.cs index 97ea6a4..81adb03 100644 --- a/OpenSim/Data/PGSQL/PGSQLAssetData.cs +++ b/OpenSim/Data/PGSQL/PGSQLAssetData.cs | |||
@@ -175,12 +175,12 @@ namespace OpenSim.Data.PGSQL | |||
175 | } | 175 | } |
176 | 176 | ||
177 | string assetDescription = asset.Description; | 177 | string assetDescription = asset.Description; |
178 | if(assetDescription.Length > AssetBase.MAX_LMASSET_DESC) | 178 | if (asset.Description.Length > AssetBase.MAX_ASSET_DESC) |
179 | { | 179 | { |
180 | if(asset.Type == (sbyte) AssetType.Landmark) | 180 | assetDescription = asset.Description.Substring(0, AssetBase.MAX_ASSET_DESC); |
181 | assetDescription = assetDescription.Substring(0, AssetBase.MAX_LMASSET_DESC); | 181 | m_log.WarnFormat( |
182 | else | 182 | "[ASSET DB]: Description '{0}' for asset {1} truncated from {2} to {3} characters on add", |
183 | assetDescription = assetDescription.Substring(0, AssetBase.MAX_ASSET_DESC); | 183 | asset.Description, asset.ID, asset.Description.Length, assetDescription.Length); |
184 | } | 184 | } |
185 | 185 | ||
186 | using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString)) | 186 | using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString)) |