From 56320e1bd81a16fc264c0f381901acebb15b0086 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 25 Oct 2022 20:42:12 +0000 Subject: [PATCH] case 4219 --- server/AyaNova/util/License.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/AyaNova/util/License.cs b/server/AyaNova/util/License.cs index 8a8c5524..4f842755 100644 --- a/server/AyaNova/util/License.cs +++ b/server/AyaNova/util/License.cs @@ -314,8 +314,8 @@ namespace AyaNova.Core //sb.AppendLine($"Server DB ID: {ServerDbId}"); sb.AppendLine($"Type: {(ActiveKey.Perpetual ? "Perpetual" : "Subscription")}"); if (ActiveKey.WillExpire) - sb.AppendLine($"License expires: {DateUtil.ServerDateTimeString(ActiveKey.LicenseExpiration)}"); - sb.AppendLine($"Maintenance subscription expires: {DateUtil.ServerDateTimeString(ActiveKey.MaintenanceExpiration)}"); + sb.AppendLine($"License expires: {DateUtil.ServerDateTimeString(ActiveKey.LicenseExpiration)} (server time)"); + sb.AppendLine($"Maintenance subscription expires: {DateUtil.ServerDateTimeString(ActiveKey.MaintenanceExpiration)} (server time)"); sb.AppendLine("Features:"); foreach (LicenseFeature l in ActiveKey.Features) { @@ -361,8 +361,8 @@ namespace AyaNova.Core // sb.Append($"serverdbid: {ServerDbId}"); sb.Append($"type: {(ActiveKey.Perpetual ? "perpetual" : "subscription")}, "); if (ActiveKey.WillExpire) - sb.Append($"exp: {DateUtil.ServerDateTimeString(ActiveKey.LicenseExpiration)} (utc), "); - sb.Append($"maint. sub. exps: {DateUtil.ServerDateTimeString(ActiveKey.MaintenanceExpiration)} (utc), "); + sb.Append($"exp: {DateUtil.ServerDateTimeString(ActiveKey.LicenseExpiration)} (server time), "); + sb.Append($"maint. sub. exps: {DateUtil.ServerDateTimeString(ActiveKey.MaintenanceExpiration)} (server time), "); sb.Append("feat:"); foreach (LicenseFeature l in ActiveKey.Features) {