This commit is contained in:
2022-10-26 01:39:48 +00:00
parent 6a7bfa4530
commit 2f26d8c8c1
2 changed files with 9 additions and 3 deletions

View File

@@ -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;
}
}