mirror of https://github.com/lidarr/Lidarr
Exceptron now uses 'en' culture if none is specified.
This commit is contained in:
parent
118089c272
commit
fe02467a71
|
@ -184,6 +184,9 @@ namespace Exceptron.Client
|
||||||
{
|
{
|
||||||
report.cul = Thread.CurrentThread.CurrentCulture.Name;
|
report.cul = Thread.CurrentThread.CurrentCulture.Name;
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(report.cul))
|
||||||
|
report.cul = "en";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
report.os = Environment.OSVersion.VersionString;
|
report.os = Environment.OSVersion.VersionString;
|
||||||
|
|
Loading…
Reference in New Issue