mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add sports and kids recording categories
This commit is contained in:
parent
5ec5a0d9fa
commit
1efcc067f0
14 changed files with 122 additions and 103 deletions
|
@ -108,19 +108,19 @@
|
|||
if (params.IsMovie == 'true') {
|
||||
query.IsMovie = true;
|
||||
}
|
||||
else if (params.IsMovie == 'true') {
|
||||
else if (params.IsMovie == 'false') {
|
||||
query.IsMovie = false;
|
||||
}
|
||||
if (params.IsSports == 'true') {
|
||||
query.IsSports = true;
|
||||
}
|
||||
else if (params.IsSports == 'true') {
|
||||
else if (params.IsSports == 'false') {
|
||||
query.IsSports = false;
|
||||
}
|
||||
if (params.IsKids == 'true') {
|
||||
query.IsKids = true;
|
||||
}
|
||||
else if (params.IsKids == 'true') {
|
||||
else if (params.IsKids == 'false') {
|
||||
query.IsKids = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue