fix: invalid error unwrap for the httperror (#2753)
Signed-off-by: saltbo <saltbo@foxmail.com>
This commit is contained in:
@@ -17,6 +17,7 @@ limitations under the License.
|
||||
package error
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"net/http"
|
||||
@@ -106,8 +107,8 @@ func (err Error) Description() string {
|
||||
func GetHTTPError(err error) (int, string) {
|
||||
var msg string
|
||||
var code int
|
||||
fe, ok := err.(Error)
|
||||
if ok {
|
||||
var fe Error
|
||||
if errors.As(err, &fe) {
|
||||
code = fe.HTTPStatus()
|
||||
msg = fe.Message
|
||||
} else {
|
||||
@@ -118,10 +119,11 @@ func GetHTTPError(err error) (int, string) {
|
||||
}
|
||||
|
||||
func IsNotFound(err error) bool {
|
||||
fe, ok := err.(Error)
|
||||
if !ok {
|
||||
var fe Error
|
||||
if !errors.As(err, &fe) {
|
||||
return false
|
||||
}
|
||||
|
||||
return fe.Code == ErrorNotFound
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user