1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05: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

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');
}