-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed an edge case where a format is missing
In the case where the zone's format (zone abbreviation) is simply "%s" and the zone has changed from having DST in the past but not now, then there is no current rule with which to replace the "%s". The work-around is to find the last rule that is available and use its format letters as the format.
- Loading branch information
1 parent
867ef0b
commit b0bc19a
Showing
5 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"f": "S", | ||
"f": "WAT", | ||
"o": "2:0", | ||
"c": "NA", | ||
"n": "Namibia {c} Time" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"f": "S", | ||
"f": "CST", | ||
"o": "-6:0", | ||
"c": "BZ", | ||
"n": "Central America {c} Time" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"r": "l0", | ||
"t": "3:0" | ||
}, | ||
"f": "{c}", | ||
"f": "+00", | ||
"o": "0:0", | ||
"s": { | ||
"c": "+02", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters