mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Simplify ShortDur code and tests
This commit is contained in:
parent
61257f89d2
commit
79a4d8f6ad
2 changed files with 19 additions and 33 deletions
|
@ -19,11 +19,6 @@ func ShortDur(d time.Duration) string {
|
|||
default:
|
||||
s = d.String()
|
||||
}
|
||||
if strings.HasSuffix(s, "m0s") {
|
||||
s = s[:len(s)-2]
|
||||
}
|
||||
if strings.HasSuffix(s, "h0m") {
|
||||
s = s[:len(s)-2]
|
||||
}
|
||||
return s
|
||||
s = strings.TrimSuffix(s, "0s")
|
||||
return strings.TrimSuffix(s, "0m")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue