This commit is contained in:
gazebo
2019-02-18 21:43:36 +08:00
parent 4740a057ff
commit 89d678f0a4

View File

@@ -750,6 +750,6 @@ func RefreshMissingDadaStores(ctx *jxcontext.Context, storeID int, isAsync, isCo
return hint, err
}
func composeDadaStoreName(store *dao.StoreDetail2) (storeName string) {
return storeDetail.Name + "-" + utils.Int2Str(store.ID)
func composeDadaStoreName(storeDetail *dao.StoreDetail2) (storeName string) {
return storeDetail.Name + "-" + utils.Int2Str(storeDetail.ID)
}