mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-26 11:41:24 +00:00
Fixed bug causing descriptions to be truncated in the cache.
This commit is contained in:
@@ -922,7 +922,7 @@ public class HSQLDBArbitraryRepository implements ArbitraryRepository {
|
||||
|
||||
// Trim metadata values if they are too long to fit in the db
|
||||
String title = ArbitraryDataTransactionMetadata.limitTitle(metadata.getTitle());
|
||||
String description = ArbitraryDataTransactionMetadata.limitTitle(metadata.getDescription());
|
||||
String description = ArbitraryDataTransactionMetadata.limitDescription(metadata.getDescription());
|
||||
List<String> tags = ArbitraryDataTransactionMetadata.limitTags(metadata.getTags());
|
||||
|
||||
String tag1 = null;
|
||||
|
Reference in New Issue
Block a user