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:
Philipp Schramm 2022-10-26 13:46:49 +02:00
parent 1e6e5e2154
commit 8c5be2c1d4

View File

@ -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;