ScheduleManagerService

This commit is contained in:
redkale
2024-01-04 10:06:52 +08:00
parent 1e715285fa
commit 0435cc4e48

View File

@@ -264,7 +264,7 @@ public class ScheduleManagerService implements ScheduleManager, Service {
}
protected String getProperty(String value) {
if (propertyFunc == null || value.indexOf('}') < 0) {
if (propertyFunc == null || value == null || value.indexOf('}') < 0) {
return value;
}
return propertyFunc.apply(value);