You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
forgejo/modules/timeutil
KN4CK3R ed47d0062e
Fix `Timestamp.IsZero` (#21593)
Our implementation of `IsZero` can't work. An "empty" timestamp (= 0)
calls `time.Unix(int64(ts), 0).IsZero()` which is always `false`. Only
`time.Time{}.IsZero()` is `true`.
We call this method ~~only at one place~~ and there the value
(`UpdatedUnix`) should be always != 0 so this PR may not have
consequences.

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2 years ago
..
executable.go format with gofumpt (#18184) 2 years ago
language.go format with gofumpt (#18184) 2 years ago
since.go Remove useless JS operation for relative time tooltips (#20756) 2 years ago
since_test.go Share HTML template renderers and create a watcher framework (#20218) 2 years ago
timestamp.go Fix `Timestamp.IsZero` (#21593) 2 years ago