added season edits

This commit is contained in:
2026-02-09 20:35:04 +11:00
parent e133b3f0b9
commit 292ec93de7
11 changed files with 561 additions and 56 deletions

View File

@@ -146,7 +146,7 @@ func formatDateLong(t time.Time) string {
func formatDuration(start, end time.Time) string {
days := int(end.Sub(start).Hours() / 24)
if days == 0 {
return "Same day"
return "1 day"
} else if days == 1 {
return "1 day"
} else if days < 7 {