mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Display rewatching list in Next up section on home page
Supports a Rewatching list page as well.
This commit is contained in:
parent
d27bfe9410
commit
a6267aee68
4 changed files with 48 additions and 9 deletions
|
@ -752,7 +752,13 @@ class AppRouter {
|
|||
}
|
||||
|
||||
if (item === 'nextup') {
|
||||
return '#!/list.html?type=nextup&serverId=' + options.serverId;
|
||||
let url = '#!/list.html?type=nextup&serverId=' + options.serverId;
|
||||
|
||||
if (options.rewatching) {
|
||||
url += '&rewatching=' + options.rewatching;
|
||||
}
|
||||
|
||||
return url;
|
||||
}
|
||||
|
||||
if (item === 'list') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue