diff options
| author | crobibero <cody@robibe.ro> | 2020-11-01 18:54:00 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-11-01 18:54:00 -0700 |
| commit | dd3507bbbfd656a4138ac9428bebaa67e11cb076 (patch) | |
| tree | 07977c3442d7a288869bf6f8b3cc53bfbd20b328 /Jellyfin.Api/Controllers/StudiosController.cs | |
| parent | c1ec46e92b2f5184ea0c7c1f84c19fc154fb15ad (diff) | |
Fix OfficialRatings separator
Diffstat (limited to 'Jellyfin.Api/Controllers/StudiosController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/StudiosController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/StudiosController.cs b/Jellyfin.Api/Controllers/StudiosController.cs index 45398dfd3..b3c345dd4 100644 --- a/Jellyfin.Api/Controllers/StudiosController.cs +++ b/Jellyfin.Api/Controllers/StudiosController.cs @@ -146,7 +146,7 @@ namespace Jellyfin.Api.Controllers NameStartsWith = nameStartsWith, NameStartsWithOrGreater = nameStartsWithOrGreater, Tags = RequestHelpers.Split(tags, '|', true), - OfficialRatings = RequestHelpers.Split(officialRatings, ',', true), + OfficialRatings = RequestHelpers.Split(officialRatings, '|', true), Genres = RequestHelpers.Split(genres, '|', true), GenreIds = RequestHelpers.GetGuids(genreIds), StudioIds = RequestHelpers.GetGuids(studioIds), |
