From af0b8b0aab556c4076eaf1202f2cc2f4d9b00823 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Tue, 1 Aug 2023 08:33:11 -0400 Subject: [PATCH] changed to returning ISO-ext string. --- source/app.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app.d b/source/app.d index 5482545..9bacdb8 100644 --- a/source/app.d +++ b/source/app.d @@ -100,7 +100,7 @@ struct LogEntry { JSONValue toJson() const { JSONValue obj = JSONValue(string[string].init); obj["id"] = JSONValue(id); - obj["createdAt"] = JSONValue(createdAt.toISOString()); + obj["createdAt"] = JSONValue(createdAt.toISOExtString()); obj["remoteAddress"] = JSONValue(remoteAddress); obj["name"] = JSONValue(name); obj["message"] = JSONValue(message);