From 7328af970cca81747fe13f454f53333c2ad0aeef Mon Sep 17 00:00:00 2001 From: skofman Date: Thu, 23 Mar 2017 11:17:02 -0700 Subject: [PATCH] Change telemetry time to use correct format --- src/NuGetGallery/Services/TelemetryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NuGetGallery/Services/TelemetryService.cs b/src/NuGetGallery/Services/TelemetryService.cs index 84c24f9158..15f7841583 100644 --- a/src/NuGetGallery/Services/TelemetryService.cs +++ b/src/NuGetGallery/Services/TelemetryService.cs @@ -122,7 +122,7 @@ private static string GetClientVersion() private static string GetAccountCreationDate(User user) { - return user.CreatedUtc != null ? user.CreatedUtc.Value.ToString("d") : "N/A"; + return user.CreatedUtc != null ? user.CreatedUtc.Value.ToString("o") : "N/A"; } private static void TrackEvent(string eventName, Action> addProperties)