Fix time-zone for certain formats closes #68

This commit is contained in:
Aaron Raddon
2018-07-29 10:48:19 -07:00
parent 42dbd9f872
commit cfd92a431d
2 changed files with 9 additions and 2 deletions

View File

@@ -1072,6 +1072,12 @@ iterRunes:
p.offseti = i
case ' ':
// 17:57:51 MST 2009
p.tzlen = i - p.tzi
if p.tzlen == 4 {
p.set(p.tzi, " MST")
} else if p.tzlen == 3 {
p.set(p.tzi, "MST")
}
p.stateTime = timeWsAlphaWs
p.yeari = i + 1
}