From 4b35fca8f2e00faf44ab40576e7c63b413c8f00e Mon Sep 17 00:00:00 2001 From: Yinyin Liu Date: Wed, 19 Nov 2025 11:22:44 +0100 Subject: [PATCH] fixed Configuration timestamp issue when added to History of Action --- csharp/App/Backend/Controller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/App/Backend/Controller.cs b/csharp/App/Backend/Controller.cs index 4f5496ad7..8270d4c40 100644 --- a/csharp/App/Backend/Controller.cs +++ b/csharp/App/Backend/Controller.cs @@ -967,7 +967,7 @@ public class Controller : ControllerBase var action = new UserAction { InstallationId = installationId, - Timestamp = DateTime.Now, + Timestamp = DateTime.UtcNow, Description = configString };