From 9b937c229ab84671d4ea84e4a947d0fa531d496a Mon Sep 17 00:00:00 2001 From: Aleksey Bakin Date: Tue, 19 Nov 2024 19:09:58 +0300 Subject: [PATCH] fix timezones list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Canada/East-Saskatchewan and US/Pacific-New can not be found by time.LoadLocation. Normally timezones should not be removed. Here is explanation, why this two was removed —https://stackoverflow.com/questions/78328589/is-the-list-of-iana-timezones-stable#comment138105389_78332721 --- datetime.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/datetime.go b/datetime.go index 748191b..e71d334 100644 --- a/datetime.go +++ b/datetime.go @@ -222,7 +222,6 @@ var timezones = []string{ "Asia/Taipei", "CST6CDT", "Canada/Central", - "Canada/East-Saskatchewan", "Canada/Saskatchewan", "Cuba", "Mexico/General", @@ -507,7 +506,6 @@ var timezones = []string{ "PST8PDT", "Pacific/Pitcairn", "US/Pacific", - "US/Pacific-New", "Pacific/Palau", "America/Asuncion", "Asia/Qyzylorda",