mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
fixed uk ratings
This commit is contained in:
@@ -237,6 +237,14 @@ namespace MediaBrowser.Server.Implementations.Localization
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Try and support ratings that are incorrectly prefixed with localization values (GB-PG, which is really just PG)
|
||||||
|
var index = rating.IndexOf('-');
|
||||||
|
|
||||||
|
if (index != -1)
|
||||||
|
{
|
||||||
|
return GetRatingLevel(rating.Substring(index + 1));
|
||||||
|
}
|
||||||
|
|
||||||
return value == null ? (int?)null : value.Value;
|
return value == null ? (int?)null : value.Value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
GB-U,1
|
U,1
|
||||||
GB-PG,5
|
PG,5
|
||||||
GB-12,6
|
12,6
|
||||||
GB-12A,7
|
12A,7
|
||||||
GB-15,8
|
15,8
|
||||||
GB-18,9
|
18,9
|
||||||
GB-R18,15
|
R18,15
|
||||||
Reference in New Issue
Block a user