mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 18:38:25 -07:00
Change toUTCString to toISOString and change default to 365 days.
This commit is contained in:
parent
2aecd89d6e
commit
1742fe4c5a
@ -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…
Reference in New Issue
Block a user