mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-05-28 03:00:03 +02:00
Add template func FileSize
This commit is contained in:
parent
4224ef142e
commit
8fb4b3afad
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ func humanateBytes(s uint64, base float64, sizes []string) string {
|
|||
}
|
||||
|
||||
// FileSize calculates the file size and generate user-friendly string.
|
||||
func FileSize(s uint64) string {
|
||||
func FileSize(s int64) string {
|
||||
sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"}
|
||||
return humanateBytes(uint64(s), 1024, sizes)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue