Skip to content

Commit

Permalink
Merge pull request #198 from Woolicious98/branch-Demo
Browse files Browse the repository at this point in the history
Fix bug in filtermanager
  • Loading branch information
Woolicious98 authored Nov 5, 2021
2 parents 19b7d8a + 1fefa10 commit 2f2e31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/terminus/storage/FilterManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static boolean isScheduleValid(Link link) {
isValid = false;
} else if (!CommonUtils.isValidDuration(link.getDuration())) {
isValid = false;
} else if (!CommonUtils.isStringNullOrEmpty(link.getName())) {
} else if (CommonUtils.isStringNullOrEmpty(link.getName())) {
isValid = false;
}
try {
Expand Down

0 comments on commit 2f2e31a

Please sign in to comment.