mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #4409 from crobibero/fix-separators
Fix API separators
This commit is contained in:
commit
13c70c415a
@ -147,9 +147,9 @@ namespace Jellyfin.Api.Controllers
|
|||||||
NameLessThan = nameLessThan,
|
NameLessThan = nameLessThan,
|
||||||
NameStartsWith = nameStartsWith,
|
NameStartsWith = nameStartsWith,
|
||||||
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
||||||
Tags = RequestHelpers.Split(tags, ',', true),
|
Tags = RequestHelpers.Split(tags, '|', true),
|
||||||
OfficialRatings = RequestHelpers.Split(officialRatings, ',', true),
|
OfficialRatings = RequestHelpers.Split(officialRatings, '|', true),
|
||||||
Genres = RequestHelpers.Split(genres, ',', true),
|
Genres = RequestHelpers.Split(genres, '|', true),
|
||||||
GenreIds = RequestHelpers.GetGuids(genreIds),
|
GenreIds = RequestHelpers.GetGuids(genreIds),
|
||||||
StudioIds = RequestHelpers.GetGuids(studioIds),
|
StudioIds = RequestHelpers.GetGuids(studioIds),
|
||||||
Person = person,
|
Person = person,
|
||||||
@ -356,9 +356,9 @@ namespace Jellyfin.Api.Controllers
|
|||||||
NameLessThan = nameLessThan,
|
NameLessThan = nameLessThan,
|
||||||
NameStartsWith = nameStartsWith,
|
NameStartsWith = nameStartsWith,
|
||||||
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
||||||
Tags = RequestHelpers.Split(tags, ',', true),
|
Tags = RequestHelpers.Split(tags, '|', true),
|
||||||
OfficialRatings = RequestHelpers.Split(officialRatings, ',', true),
|
OfficialRatings = RequestHelpers.Split(officialRatings, '|', true),
|
||||||
Genres = RequestHelpers.Split(genres, ',', true),
|
Genres = RequestHelpers.Split(genres, '|', true),
|
||||||
GenreIds = RequestHelpers.GetGuids(genreIds),
|
GenreIds = RequestHelpers.GetGuids(genreIds),
|
||||||
StudioIds = RequestHelpers.GetGuids(studioIds),
|
StudioIds = RequestHelpers.GetGuids(studioIds),
|
||||||
Person = person,
|
Person = person,
|
||||||
|
@ -592,7 +592,7 @@ namespace Jellyfin.Api.Controllers
|
|||||||
IsKids = isKids,
|
IsKids = isKids,
|
||||||
IsSports = isSports,
|
IsSports = isSports,
|
||||||
SeriesTimerId = seriesTimerId,
|
SeriesTimerId = seriesTimerId,
|
||||||
Genres = RequestHelpers.Split(genres, ',', true),
|
Genres = RequestHelpers.Split(genres, '|', true),
|
||||||
GenreIds = RequestHelpers.GetGuids(genreIds)
|
GenreIds = RequestHelpers.GetGuids(genreIds)
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -648,7 +648,7 @@ namespace Jellyfin.Api.Controllers
|
|||||||
IsKids = body.IsKids,
|
IsKids = body.IsKids,
|
||||||
IsSports = body.IsSports,
|
IsSports = body.IsSports,
|
||||||
SeriesTimerId = body.SeriesTimerId,
|
SeriesTimerId = body.SeriesTimerId,
|
||||||
Genres = RequestHelpers.Split(body.Genres, ',', true),
|
Genres = RequestHelpers.Split(body.Genres, '|', true),
|
||||||
GenreIds = RequestHelpers.GetGuids(body.GenreIds)
|
GenreIds = RequestHelpers.GetGuids(body.GenreIds)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -146,9 +146,9 @@ namespace Jellyfin.Api.Controllers
|
|||||||
NameLessThan = nameLessThan,
|
NameLessThan = nameLessThan,
|
||||||
NameStartsWith = nameStartsWith,
|
NameStartsWith = nameStartsWith,
|
||||||
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
NameStartsWithOrGreater = nameStartsWithOrGreater,
|
||||||
Tags = RequestHelpers.Split(tags, ',', true),
|
Tags = RequestHelpers.Split(tags, '|', true),
|
||||||
OfficialRatings = RequestHelpers.Split(officialRatings, ',', true),
|
OfficialRatings = RequestHelpers.Split(officialRatings, '|', true),
|
||||||
Genres = RequestHelpers.Split(genres, ',', true),
|
Genres = RequestHelpers.Split(genres, '|', true),
|
||||||
GenreIds = RequestHelpers.GetGuids(genreIds),
|
GenreIds = RequestHelpers.GetGuids(genreIds),
|
||||||
StudioIds = RequestHelpers.GetGuids(studioIds),
|
StudioIds = RequestHelpers.GetGuids(studioIds),
|
||||||
Person = person,
|
Person = person,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user