- Switch 24h culture to enforce 00:00 formatting

This commit is contained in:
Infi
2025-07-16 01:28:51 +02:00
parent e2fb6495de
commit b760de1799
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/12.0.2">
<PropertyGroup>
<Version>1.30.6</Version>
<Version>1.30.7</Version>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
+1 -1
View File
@@ -1157,7 +1157,7 @@ public sealed class ChatLogWindow : Window
if (tab.DisplayTimestamp)
{
var localTime = message.Date.ToLocalTime();
var timestamp = localTime.ToString("t", !Plugin.Config.Use24HourClock ? null : CultureInfo.CreateSpecificCulture("es-ES"));
var timestamp = localTime.ToString("t", !Plugin.Config.Use24HourClock ? null : CultureInfo.CreateSpecificCulture("de-DE"));
if (isTable)
{
if (!Plugin.Config.HideSameTimestamps || timestamp != lastTimestamp)