This commit is contained in:
@@ -45,7 +45,7 @@ namespace Sockeye.Biz
|
||||
{
|
||||
//client can send a non expiring license key but internally it MUST have a date so the
|
||||
//raven default for non expiring keys is this
|
||||
if (newObject.LicenseExpire == null)
|
||||
if (newObject.LicenseExpire == null && !newObject.TrialMode)
|
||||
{
|
||||
newObject.LicenseExpire = DateUtil.EmptyDateValueForLicenseGeneration;
|
||||
}
|
||||
@@ -114,7 +114,7 @@ namespace Sockeye.Biz
|
||||
putObject.Tags = TagBiz.NormalizeTags(putObject.Tags);
|
||||
//client can send a non expiring license key but internally it MUST have a date so the
|
||||
//raven default for non expiring keys is this
|
||||
if (putObject.LicenseExpire == null)
|
||||
if (putObject.LicenseExpire == null && !putObject.TrialMode)
|
||||
{
|
||||
putObject.LicenseExpire = DateUtil.EmptyDateValueForLicenseGeneration;
|
||||
}
|
||||
@@ -861,6 +861,8 @@ MaximumDataGB: 20
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//RAVEN keys *always* expire
|
||||
if (proposedObj.LicenseExpire == null)
|
||||
|
||||
Reference in New Issue
Block a user