This commit is contained in:
2021-08-19 17:19:05 +00:00
parent 4cbc07bc94
commit 9418089cd4
2 changed files with 3 additions and 3 deletions

View File

@@ -629,9 +629,9 @@ namespace AyaNova.Biz
var dtNow = DateTime.UtcNow;
var dtGenBefore = CalculateNewDateFromSpanAndUnit(dtNow, proposedObj.GenerateBeforeUnit, proposedObj.GenerateBeforeInterval);
var dtRepeat = CalculateNewDateFromSpanAndUnit(dtNow, proposedObj.RepeatUnit, proposedObj.RepeatInterval);
if (!(dtGenBefore < dtRepeat))
if (!(dtGenBefore < dtRepeat) && proposedObj.Active == true)//INACTIVE OK DUE TO v8 MIGRATE
{
//NOTE: this is directly tied to v8 migrate so do not change this without changing v8migrate pm export as well
AddError(ApiErrorCode.VALIDATION_INVALID_VALUE, "GenerateBeforeInterval", await Translate("ErrorGenBeforeTooSmall"));
}

View File

@@ -5,7 +5,7 @@ namespace AyaNova.Util
/// </summary>
internal static class AyaNovaVersion
{
public const string VersionString = "8.0.0-alpha.122";
public const string VersionString = "8.0.0-alpha.123";
public const string FullNameAndVersion = "AyaNova server " + VersionString;
}//eoc
}//eons