This commit is contained in:
@@ -243,7 +243,8 @@ namespace AyaNova.Core
|
||||
{
|
||||
get
|
||||
{
|
||||
return LicenseExpiration < DateTime.Now;
|
||||
//Note: key is already UTC and should parse into datetime kind UTC but this is insurance in case rockfish changes as has no effect on a UTC kind of datetime
|
||||
return LicenseExpiration.ToUniversalTime() < DateTime.UtcNow;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -251,7 +252,8 @@ namespace AyaNova.Core
|
||||
{
|
||||
get
|
||||
{
|
||||
return MaintenanceExpiration < DateTime.Now;
|
||||
//Note: key is already UTC and should parse into datetime kind UTC but this is insurance in case rockfish changes as has no effect on a UTC kind of datetime
|
||||
return MaintenanceExpiration.ToUniversalTime() < DateTime.UtcNow;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user