mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 15:33:11 +00:00
Exceptron now uses 'en' culture if none is specified.
This commit is contained in:
parent
118089c272
commit
fe02467a71
1 changed files with 3 additions and 0 deletions
|
@ -184,6 +184,9 @@ namespace Exceptron.Client
|
|||
{
|
||||
report.cul = Thread.CurrentThread.CurrentCulture.Name;
|
||||
|
||||
if (string.IsNullOrEmpty(report.cul))
|
||||
report.cul = "en";
|
||||
|
||||
try
|
||||
{
|
||||
report.os = Environment.OSVersion.VersionString;
|
||||
|
|
Loading…
Reference in a new issue