Skip to content

Commit

Permalink
[PPANTT-99] feat: Change validity query
Browse files Browse the repository at this point in the history
  • Loading branch information
svariant committed Aug 30, 2024
1 parent 800a3ef commit dd27d74
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ private static void buildWhereConditions(

if (validBefore != null) {
buildDateQuery(validBefore, false, builder);
} else if (validAfter != null) {
}
if (validAfter != null) {
buildDateQuery(validAfter, false, builder);
}

if (expireBefore != null) {
buildDateQuery(expireBefore, true, builder);
} else if (expireAfter != null) {
}
if (expireAfter != null) {
buildDateQuery(expireAfter, true, builder);
}
}
Expand Down

0 comments on commit dd27d74

Please sign in to comment.