mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix for new rating
UR - Not rated
This commit is contained in:
parent
efd6b95408
commit
63bba9d450
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ class API():
|
|||
def getMpaa(self, item):
|
||||
# Convert more complex cases
|
||||
mpaa = item.get('OfficialRating', "")
|
||||
if "NR" == mpaa:
|
||||
if mpaa in ("NR", "UR"):
|
||||
# Kodi seems to not like NR, but will accept Rated Not Rated
|
||||
mpaa = "Rated Not Rated"
|
||||
|
||||
|
|
Loading…
Reference in a new issue