forked from Qortal/qortal
Made names case insensitive when using them as a search filter.
This commit is contained in:
parent
8fd37e857e
commit
618cffefb1
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user