1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00

Fixed: Series end date is UTC

This commit is contained in:
Bogdan 2024-01-12 02:36:18 +02:00 committed by GitHub
parent a99fc6fa66
commit 8971ac2e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ function getExpandedState(newState) {
}
function getDateYear(date) {
const dateDate = moment(date);
const dateDate = moment.utc(date);
return dateDate.format('YYYY');
}