From 6c79e6428de9d3f3f65a7323f1d8f5662295ff9d Mon Sep 17 00:00:00 2001 From: Waldek Mastykarz Date: Thu, 23 Apr 2026 15:29:32 +0200 Subject: [PATCH] Fix HAR entry timestamp to use UTC date time --- DevProxy.Plugins/Generation/HarGeneratorPlugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevProxy.Plugins/Generation/HarGeneratorPlugin.cs b/DevProxy.Plugins/Generation/HarGeneratorPlugin.cs index fc85ffc9..f01e608a 100644 --- a/DevProxy.Plugins/Generation/HarGeneratorPlugin.cs +++ b/DevProxy.Plugins/Generation/HarGeneratorPlugin.cs @@ -106,7 +106,7 @@ private HarEntry CreateHarEntry(RequestLog log) var entry = new HarEntry { - StartedDateTime = log.Timestamp.ToString("o"), + StartedDateTime = log.Timestamp.UtcDateTime.ToString("o"), Time = 0, // We don't have actual timing data in RequestLog Request = new HarRequest {