mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-22 20:26:50 +00:00
Made names case insensitive when using them as a search filter.
This commit is contained in:
@@ -470,8 +470,8 @@ public class HSQLDBTransactionRepository implements TransactionRepository {
|
||||
}
|
||||
|
||||
if (name != null) {
|
||||
whereClauses.add("ArbitraryTransactions.name = ?");
|
||||
bindParams.add(name);
|
||||
whereClauses.add("lower(ArbitraryTransactions.name) = ?");
|
||||
bindParams.add(name.toLowerCase());
|
||||
}
|
||||
|
||||
if (hasAddress) {
|
||||
|
Reference in New Issue
Block a user