diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-03-04 20:18:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-04 20:18:35 +0100 |
| commit | 0419deeec41cb7021c22a65fc4b63153075fd969 (patch) | |
| tree | 4b994c62bf64ad2cb15ad7d1826838fd38526b15 | |
| parent | ed07ed44ae99d3c53a95774cdbd6254c9cb0a76e (diff) | |
Update LocalizationManager.cs
| -rw-r--r-- | Emby.Server.Implementations/Localization/LocalizationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Localization/LocalizationManager.cs b/Emby.Server.Implementations/Localization/LocalizationManager.cs index 2c59579a8..d55b258a3 100644 --- a/Emby.Server.Implementations/Localization/LocalizationManager.cs +++ b/Emby.Server.Implementations/Localization/LocalizationManager.cs @@ -88,7 +88,7 @@ namespace Emby.Server.Implementations.Localization if (parts.Length == 2 && int.TryParse(parts[1], NumberStyles.Integer, UsCulture, out var value)) { - dict.Add(parts[0], (new ParentalRating { Name = parts[0], Value = value })); + dict.Add(parts[0], new ParentalRating { Name = parts[0], Value = value }); } #if DEBUG else |
