RSS-119: RSS-119: Bugfix for method redactBetween in Section, if value is blank but start and/or stop is included
This commit is contained in:
parent
1e6e5e2154
commit
8c5be2c1d4
@ -1332,7 +1332,7 @@ public class Section {
|
||||
|
||||
if (values != null) {
|
||||
for (String value : values) {
|
||||
if (StringUtils.isNotBlank(value)) {
|
||||
if (StringUtils.isNotBlank(value) || (((!start.isEmpty() && includeStart) || (!stop.isEmpty() && includeStop)) && StringUtils.isNotEmpty(value))) {
|
||||
|
||||
String searchString = value;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user