mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-16 07:23:01 -06:00
[chore]: Bump github.com/minio/minio-go/v7 from 7.0.84 to 7.0.85 (#3772)
This commit is contained in:
parent
576da4cf01
commit
bb6d2f8ee8
6 changed files with 62 additions and 6 deletions
8
vendor/github.com/minio/minio-go/v7/api-remove.go
generated
vendored
8
vendor/github.com/minio/minio-go/v7/api-remove.go
generated
vendored
|
|
@ -213,6 +213,14 @@ type RemoveObjectError struct {
|
|||
Err error
|
||||
}
|
||||
|
||||
func (err *RemoveObjectError) Error() string {
|
||||
// This should never happen as we will have a non-nil error with no underlying error.
|
||||
if err.Err == nil {
|
||||
return "unexpected remove object error result"
|
||||
}
|
||||
return err.Err.Error()
|
||||
}
|
||||
|
||||
// RemoveObjectResult - container of Multi Delete S3 API result
|
||||
type RemoveObjectResult struct {
|
||||
ObjectName string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue