mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Make check case insensitive
This commit is contained in:
parent
57ae8af3d7
commit
4da5c4ff1a
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ public class FilterManager {
|
|||
Method method = paymentAccountPayload.getClass().getMethod(paymentAccountFilter.getGetMethodName());
|
||||
String result = (String) method.invoke(paymentAccountPayload);
|
||||
appliedPaymentAccountFilter[0] = paymentAccountFilter;
|
||||
return result.equals(paymentAccountFilter.getValue());
|
||||
return result.toLowerCase().equals(paymentAccountFilter.getValue().toLowerCase());
|
||||
} catch (Throwable e) {
|
||||
log.error(e.getMessage());
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue