Skip to content

Commit

Permalink
Fix: Fixed wrong date format when language is set to Default (#11087)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishitetsu authored Feb 1, 2023
1 parent 7157cee commit ce26b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Files.App.ServicesImplementation.DateTimeFormatter
{
internal abstract class AbstractDateTimeFormatter : IDateTimeFormatter
{
private static readonly CultureInfo cultureInfo = new(ApplicationLanguages.PrimaryLanguageOverride);
private static readonly CultureInfo cultureInfo = new(ApplicationLanguages.Languages[0]);

public abstract string Name { get; }

Expand Down

0 comments on commit ce26b20

Please sign in to comment.