Reoccuring time trigger

This commit is contained in:
jens 2021-11-13 02:32:39 +01:00
parent 06a6651fae
commit ab0f2d88b4
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ public class TimeFrame
this.setTriggerTimeStart(Time.valueOf(dateArray[0]));
this.setTriggerTimeStop(Time.valueOf(dateArray[1]));
this.setDayListFromString(dateArray[2]);
this.setRepetition(Long.parseLong(dateArray[3]));
if(dateArray.length > 3) // may not exist in old config files
this.setRepetition(Long.parseLong(dateArray[3]));
}
@Override