diff --git a/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs b/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs index a704f6b2..0f75a3a2 100644 --- a/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs +++ b/Iceshrimp.Frontend/Core/Miscellaneous/RenderMfm.cs @@ -546,8 +546,8 @@ public static partial class MfmRenderer } var date = DateTime.UnixEpoch.AddSeconds(timestamp); - el.SetAttribute("datetime", date.ToString("O")); - el.TextContent = date.ToString("G"); + el.SetAttribute("datetime", date.ToLocalTime().ToString("O")); + el.TextContent = date.ToLocalTime().ToString("G"); return el; }