mirror of https://github.com/Sonarr/Sonarr
Fixed: Series end date is UTC
This commit is contained in:
parent
a99fc6fa66
commit
8971ac2e14
|
@ -58,7 +58,7 @@ function getExpandedState(newState) {
|
|||
}
|
||||
|
||||
function getDateYear(date) {
|
||||
const dateDate = moment(date);
|
||||
const dateDate = moment.utc(date);
|
||||
|
||||
return dateDate.format('YYYY');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue