Fix hours in AM/PM format instead of 24

This commit is contained in:
Lukas Rieger (Blue) 2023-06-18 13:51:07 +02:00
parent 2e572ddb11
commit 85f4735050
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2

View File

@ -42,7 +42,7 @@
public class CommandHelper {
private static final DateTimeFormatter TIME_FORMAT =
DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss")
DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
.withLocale(Locale.ROOT)
.withZone(ZoneId.systemDefault());