mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add livetv view
This commit is contained in:
parent
c37783479e
commit
e41436552e
44 changed files with 1396 additions and 749 deletions
|
@ -545,6 +545,30 @@ class AppRouter {
|
|||
urlForList += '&IsFavorite=true';
|
||||
}
|
||||
|
||||
if (options.isAiring) {
|
||||
urlForList += '&IsAiring=true';
|
||||
}
|
||||
|
||||
if (options.isMovie) {
|
||||
urlForList += '&IsMovie=true';
|
||||
}
|
||||
|
||||
if (options.isSeries) {
|
||||
urlForList += '&IsSeries=true&IsMovie=false&IsNews=false';
|
||||
}
|
||||
|
||||
if (options.isSports) {
|
||||
urlForList += '&IsSports=true';
|
||||
}
|
||||
|
||||
if (options.isKids) {
|
||||
urlForList += '&IsKids=true';
|
||||
}
|
||||
|
||||
if (options.isNews) {
|
||||
urlForList += '&IsNews=true';
|
||||
}
|
||||
|
||||
return urlForList;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue