This commit is contained in:
richboo111
2024-01-19 14:47:12 +08:00
parent 962c9e98af
commit c5048b64d7

View File

@@ -157,7 +157,7 @@ func (c *IMController) GetElmMedia() {
// @router /AddOrGetCustomReply [get] // @router /AddOrGetCustomReply [get]
func (c *IMController) AddOrGetCustomReply() { func (c *IMController) AddOrGetCustomReply() {
c.callAddOrGetCustomReply(func(params *tImAddOrGetCustomReplyParams) (interface{}, string, error) { c.callAddOrGetCustomReply(func(params *tImAddOrGetCustomReplyParams) (interface{}, string, error) {
retVal, err := im.AddOrGetCustomReply(params.StoreID, params.VendorStoreID, params.ReplyTemplate, params.OpType) retVal, err := im.AddOrGetCustomReply(params.AppID, params.VendorStoreID, params.ReplyTemplate, params.OpType)
return retVal, "", err return retVal, "", err
}) })
} }