- fix a bug in ebai.UpdateStore

This commit is contained in:
gazebo
2019-03-01 18:16:55 +08:00
parent 421240ac54
commit 0835e66e8b

View File

@@ -195,9 +195,9 @@ func (p *PurchaseHandler) UpdateStore(db *dao.DaoDB, storeID int, userName strin
}
return err
}
}
params := genStoreMapFromStore(store)
if err = api.EbaiAPI.ShopUpdate(params); err == nil {
params := genStoreMapFromStore(store)
if err = api.EbaiAPI.ShopUpdate(params); err == nil {
}
}
}
}