diff --git a/MediaBrowser.Controller/Providers/BaseItemXmlParser.cs b/MediaBrowser.Controller/Providers/BaseItemXmlParser.cs index 1b5e303dd8..6f246ef406 100644 --- a/MediaBrowser.Controller/Providers/BaseItemXmlParser.cs +++ b/MediaBrowser.Controller/Providers/BaseItemXmlParser.cs @@ -594,43 +594,8 @@ namespace MediaBrowser.Controller.Providers { switch (reader.Name) { - case "Value": - { - var ratingString = reader.ReadElementContentAsString(); - - int rating = 7; - - if (!string.IsNullOrWhiteSpace(ratingString)) - { - int.TryParse(ratingString, out rating); - } - - switch (rating) - { - case -1: - item.OfficialRating = "NR"; - break; - case 0: - item.OfficialRating = "UR"; - break; - case 1: - item.OfficialRating = "G"; - break; - case 3: - item.OfficialRating = "PG"; - break; - case 4: - item.OfficialRating = "PG-13"; - break; - case 5: - item.OfficialRating = "NC-17"; - break; - case 6: - item.OfficialRating = "R"; - break; - } - break; - } + // Removed support for "Value" tag as it conflicted with MPAA rating but leaving this function for possible + // future support of "Description" -ebr default: reader.Skip(); diff --git a/MediaBrowser.Server.Implementations/Localization/Ratings/de.txt b/MediaBrowser.Server.Implementations/Localization/Ratings/de.txt index 4683e1eb6e..571b6eba95 100644 --- a/MediaBrowser.Server.Implementations/Localization/Ratings/de.txt +++ b/MediaBrowser.Server.Implementations/Localization/Ratings/de.txt @@ -1,5 +1,5 @@ -DE-FSK,1 -DE-FSK,5 -DE-FSK,7 -DE-FSK,8 -DE-FSK,9 \ No newline at end of file +DE-FSK0,1 +DE-FSK6+,5 +DE-FSK12+,7 +DE-FSK16+,8 +DE-FSK18+,9