Commit e49fa879 by Shadow

fixed bug

parent 53206998
...@@ -400,8 +400,8 @@ public class ImClientServiceImpl extends BaseServiceImpl<ImClientMapper, ImClien ...@@ -400,8 +400,8 @@ public class ImClientServiceImpl extends BaseServiceImpl<ImClientMapper, ImClien
} }
targetClient.setAttributes(JSONObject.toJSONString(attributes)); targetClient.setAttributes(JSONObject.toJSONString(attributes));
// 清除client的redis缓存 // 清除client的redis缓存
redisUtils.delKey(targetClient.getId() + ""); deleteCacheImClient(targetClient.getFkAppid(), targetClient.getClientId());
redisUtils.delKey(targetClient.getFkAppid() + targetClient.getClientId()); deleteImClient(targetClient.getId());
return this.updateById(targetClient); return this.updateById(targetClient);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment