This commit is contained in:
yangsiqi1376@163.com
2023-11-02 15:17:42 +08:00
parent 74db198aed
commit 75c6cf88bf
2 changed files with 16 additions and 22 deletions

View File

@@ -102,8 +102,8 @@ func (c *IMController) GetPoiIMStatus() {
b := bytes.NewBufferString(params.Data)
decoder := json.NewDecoder(b)
if err := decoder.Decode(&req); err == nil {
retVal, hint := im.GetPoiIMStatus(req)
return retVal, hint, nil
retVal := im.GetPoiIMStatus(req)
return retVal, "", nil
} else {
return nil, "", err
}