1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

set en-US as default current culture

This commit is contained in:
Kyle Spearrin
2019-07-11 15:03:17 -04:00
parent d61957d2de
commit 242e509b9d
10 changed files with 27 additions and 4 deletions

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
@ -19,6 +20,11 @@ namespace Bit.Server
"/images/"
};
public Startup()
{
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US");
}
public void ConfigureServices(IServiceCollection services)
{ }