mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Change toUTCString to toISOString and change default to 365 days.
This commit is contained in:
parent
2aecd89d6e
commit
1742fe4c5a
2 changed files with 2 additions and 2 deletions
|
@ -608,7 +608,7 @@ import ServerConnections from '../ServerConnections';
|
|||
EnableImageTypes: 'Primary,Backdrop,Banner,Thumb',
|
||||
EnableTotalRecordCount: false,
|
||||
DisableFirstEpisode: false,
|
||||
NextUpDateCutoff: oldestDateForNextUp.toUTCString()
|
||||
NextUpDateCutoff: oldestDateForNextUp.toISOString()
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
|
@ -444,7 +444,7 @@ export class UserSettings {
|
|||
// Explicitly return 0 to avoid returning 100 because 0 is falsy.
|
||||
return 0;
|
||||
} else {
|
||||
return maxDaysForNextUp || 100;
|
||||
return maxDaysForNextUp || 365;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue