This commit is contained in:
@@ -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"));
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user