diff --git a/platformapi/ebaiapi/shop_sku.go b/platformapi/ebaiapi/shop_sku.go index c5af6b31..5018704f 100644 --- a/platformapi/ebaiapi/shop_sku.go +++ b/platformapi/ebaiapi/shop_sku.go @@ -252,11 +252,13 @@ func (a *API) ShopCategoryUpdate(shopID string, categoryID int64, name string, r "name": name, "rank": rank, }) - if errWithCode, ok := err.(*utils.ErrorWithCode); ok { - if errWithCode.Level() == 0 && errWithCode.IntCode() == 1 { //忽略同名错误 - err = nil - } - } + + // todo, 之前为什么要忽略同名错误? + // if errWithCode, ok := err.(*utils.ErrorWithCode); ok { + // if errWithCode.Level() == 0 && errWithCode.IntCode() == 1 { //忽略同名错误 + // err = nil + // } + // } return err }