Update LocalizationManager.cs

pull/1028/head
Bond-009 5 years ago committed by GitHub
parent ed07ed44ae
commit 0419deeec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save