1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-04-06 16:16:26 +02:00

fix(server): always get UTC dates from postgres ()

This commit is contained in:
Jason Rasmussen 2025-02-05 19:47:27 +01:00 committed by GitHub
parent 1492b55c07
commit 48d421e28c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -227,6 +227,7 @@ const getEnv = (): EnvData => {
}
const driverOptions = {
...parsedOptions,
onnotice: (notice: Notice) => {
if (notice['severity'] !== 'NOTICE') {
console.warn('Postgres notice:', notice);
@ -247,7 +248,9 @@ const getEnv = (): EnvData => {
serialize: (value: number) => value.toString(),
},
},
...parsedOptions,
connection: {
TimeZone: 'UTC',
},
};
return {