mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 05:07:15 +01:00
10 lines
No EOL
283 B
JavaScript
10 lines
No EOL
283 B
JavaScript
// Fix for issue #3691: Deprecated timezone 'Asia/Saigon' causes PostgreSQL error
|
|
// File: src/lib/date.ts
|
|
|
|
// Add timezone mapping (around line 107):
|
|
/*
|
|
const TIMEZONE_MAPPINGS: Record<string, string> = {
|
|
'Asia/Calcutta': 'Asia/Kolkata',
|
|
'Asia/Saigon': 'Asia/Ho_Chi_Minh',
|
|
};
|
|
*/ |