diff options
Diffstat (limited to 'time.go')
| -rw-r--r-- | time.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -34,6 +34,9 @@ func isUTC(t time.Time) bool { func TimeLocal(someTimeAgoOrLaterNotsure any) string { guess, t, err := TimeCheck(someTimeAgoOrLaterNotsure) + if t != nil { + return FormatTimeLocal(*t) + } if errors.Is(err, Broken) { if len(guess) > 0 { return fmt.Sprintf("%-15s", guess) |
