diff options
author | 2023-02-27 10:21:58 +0100 | |
---|---|---|
committer | 2023-02-27 10:21:58 +0100 | |
commit | 752c38b0d5c01dbcc8f846518a61cbde4b7537cf (patch) | |
tree | bf00aaf2eb2703cd50491e5359099159665ecaab /vendor/github.com/dustin/go-humanize/ftoa.go | |
parent | [chore] Use latest containers when building (#1554) (diff) | |
download | gotosocial-752c38b0d5c01dbcc8f846518a61cbde4b7537cf.tar.xz |
[chore]: Bump github.com/minio/minio-go/v7 from 7.0.48 to 7.0.49 (#1567)
Bumps [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) from 7.0.48 to 7.0.49.
- [Release notes](https://github.com/minio/minio-go/releases)
- [Commits](https://github.com/minio/minio-go/compare/v7.0.48...v7.0.49)
---
updated-dependencies:
- dependency-name: github.com/minio/minio-go/v7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/dustin/go-humanize/ftoa.go')
-rw-r--r-- | vendor/github.com/dustin/go-humanize/ftoa.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vendor/github.com/dustin/go-humanize/ftoa.go b/vendor/github.com/dustin/go-humanize/ftoa.go index 1c62b640d..bce923f37 100644 --- a/vendor/github.com/dustin/go-humanize/ftoa.go +++ b/vendor/github.com/dustin/go-humanize/ftoa.go @@ -6,6 +6,9 @@ import ( ) func stripTrailingZeros(s string) string { + if !strings.ContainsRune(s, '.') { + return s + } offset := len(s) - 1 for offset > 0 { if s[offset] == '.' { |