azure: fix totally broken IsNotExist

This commit is contained in:
Michael Eischer 2022-12-03 18:14:39 +01:00
parent 3ebdadc58f
commit 579cd6dc64
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import (
"hash"
"io"
"net/http"
"os"
"path"
"strings"
@ -130,7 +129,8 @@ func (be *Backend) SetListMaxItems(i int) {
// IsNotExist returns true if the error is caused by a not existing file.
func (be *Backend) IsNotExist(err error) bool {
debug.Log("IsNotExist(%T, %#v)", err, err)
return os.IsNotExist(err)
var aerr storage.AzureStorageServiceError
return errors.As(err, &aerr) && aerr.StatusCode == http.StatusNotFound
}
// Join combines path components with slashes.