Update LocalizationManager.cs

This commit is contained in:
Bond-009
2019-03-04 20:18:35 +01:00
committed by GitHub
parent ed07ed44ae
commit 0419deeec4

View File

@@ -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