aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-04 20:18:35 +0100
committerGitHub <noreply@github.com>2019-03-04 20:18:35 +0100
commit0419deeec41cb7021c22a65fc4b63153075fd969 (patch)
tree4b994c62bf64ad2cb15ad7d1826838fd38526b15
parented07ed44ae99d3c53a95774cdbd6254c9cb0a76e (diff)
Update LocalizationManager.cs
-rw-r--r--Emby.Server.Implementations/Localization/LocalizationManager.cs2
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