This commit is contained in:
Paul van Brouwershaven
2022-06-30 18:13:37 +02:00
parent 0369ec3e88
commit 8e1e8ca8bb

View File

@@ -48,7 +48,7 @@ func pdfDateTime(date time.Time) string {
_, original_offset := date.Zone()
offset := original_offset
if offset < 0 {
offset = (offset - offset) - offset
offset = -offset
}
offset_duration := time.Duration(offset) * time.Second