Normalize the default date format to the format Discord uses for the US client

This commit is contained in:
Tyrrrz 2023-02-12 16:13:09 +02:00
parent d99958a9b1
commit f73d07a7c9
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ public abstract class ExportCommandBase : TokenCommandBase
"dateformat",
Description = "Format used when writing dates."
)]
public string DateFormat { get; init; } = "dd-MMM-yy hh:mm tt";
public string DateFormat { get; init; } = "MM/dd/yyyy h:mm tt";
[CommandOption(
"fuck-russia",

View file

@ -15,7 +15,7 @@ public partial class SettingsService : SettingsManager
public bool IsTokenPersisted { get; set; } = true;
public string DateFormat { get; set; } = "dd-MMM-yy hh:mm tt";
public string DateFormat { get; set; } = "MM/dd/yyyy h:mm tt";
public int ParallelLimit { get; set; } = 1;