Merge remote-tracking branch 'origin/feature_weather' into feature_weather

This commit is contained in:
schrom01
2022-12-01 23:46:08 +01:00
2 changed files with 4 additions and 4 deletions
@@ -86,7 +86,7 @@ public class WeatherGradenTaskPlanner {
// vom startdatum abhängig,
private void adjustNextExecutionOfWateringTask(List<Task> cropTaskList){
for(Task task : cropTaskList){
if(task.getName().equals("watering task")){
if(task.getName().equals("water plant")){
task.setNextExecution(task.getNextExecution().plusDays(task.getInterval().orElse(1)));
}
}