This commit is contained in:
2021-07-30 15:30:57 +00:00
parent 6da4108aca
commit 72fc11b673
2 changed files with 2 additions and 2 deletions

View File

@@ -721,7 +721,7 @@ namespace AyaNova.Biz
}
var tsRepeatInterval = dtRepeat - dtNow;
if (tsRepeatInterval.TotalSeconds < 3601)//One hour minimum repeat interval
if (tsRepeatInterval.TotalSeconds < 3600)//One hour minimum repeat interval
{
AddError(ApiErrorCode.VALIDATION_INVALID_VALUE, "RepeatInterval", await Translate("ErrorRepeatIntervalTooSmall"));
}