This commit is contained in:
Luke Pulverenti 2013-05-28 13:25:59 -04:00
commit 405e38280b

View File

@ -363,8 +363,8 @@ namespace MediaBrowser.Controller.Providers
if (!string.IsNullOrWhiteSpace(rating)) if (!string.IsNullOrWhiteSpace(rating))
{ {
float val; float val;
// All external meta is saving this as '.' for decimal I believe...but just to be sure
if (float.TryParse(rating, out val)) if (float.TryParse(rating.Replace(',','.'), NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out val))
{ {
item.CommunityRating = val; item.CommunityRating = val;
} }