Fix missing handling of optional NTP format string

This commit is contained in:
Daniel - 2020-01-18 10:24:49 +01:00
parent c86051ba22
commit 66eb5e3da4
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 2 additions and 1 deletions

View File

@ -220,7 +220,8 @@ FORMAT-STRING defaults to some ISO 8601-like format."
;; we explicitly call `calcFunc-unixtime'
;; here to set the time zone to UTC
0)))
(format "%04d-%02d-%02dT%02d:%02d:%012.9fZ"
(format (or format-string
"%04d-%02d-%02dT%02d:%02d:%012.9fZ")
(calcFunc-year unix-time)
(calcFunc-month unix-time)
(calcFunc-day unix-time)