mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
prep for German mpaa rating FSK
This commit is contained in:
parent
c1e1f16e26
commit
c58e4d84e7
1 changed files with 3 additions and 0 deletions
|
@ -349,6 +349,9 @@ class API(object):
|
|||
# Kodi seems to not like NR, but will accept Not Rated
|
||||
mpaa = "Not Rated"
|
||||
|
||||
if "FSK-" in mpaa:
|
||||
mpaa = mpaa.replace("-", " ")
|
||||
|
||||
return mpaa
|
||||
|
||||
def get_country(self):
|
||||
|
|
Loading…
Reference in a new issue