diff options
| author | crobibero <cody@robibe.ro> | 2020-11-01 18:53:02 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-11-01 18:53:02 -0700 |
| commit | 826c24142e43550bd8de114ae19e3789677cfdc3 (patch) | |
| tree | f2d80efcc722fdb4e6a434331e7d6a5c2f06eccc /Jellyfin.Api/Controllers/StudiosController.cs | |
| parent | 5b1eb8b6e2aa2433ddcb907c5b88c5540a164331 (diff) | |
Fix Genres 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 1d2bf2255..831a9ab8f 100644 --- a/Jellyfin.Api/Controllers/StudiosController.cs +++ b/Jellyfin.Api/Controllers/StudiosController.cs @@ -147,7 +147,7 @@ namespace Jellyfin.Api.Controllers NameStartsWithOrGreater = nameStartsWithOrGreater, Tags = RequestHelpers.Split(tags, ',', true), OfficialRatings = RequestHelpers.Split(officialRatings, ',', true), - Genres = RequestHelpers.Split(genres, ',', true), + Genres = RequestHelpers.Split(genres, '|', true), GenreIds = RequestHelpers.GetGuids(genreIds), StudioIds = RequestHelpers.GetGuids(studioIds), Person = person, |
