Commit 15b1c55b by liuyu

Merge branch 'release' into 'master'

Release

See merge request !67
parents ef2dcef6 63feb74e
......@@ -203,7 +203,7 @@ public class TemplateTitleServiceImpl implements TemplateTitleService {
if (redissonUtil.tryLock(lockKey, 5, 5)) {
String mapKey = Tools.assembleKey(GenericAttribute.REDIS_MAP_KEY, group);
String mapKeyValue = redissonUtil.getMapKeyValue(mapKey, title);
if (Strings.isEmpty(mapKeyValue)) {
if (Strings.isEmpty(mapKeyValue) && Objects.isNull(templateTitleVo)) {
return;
}
TemplateTitleVo titleVo = JSONObject.parseObject(mapKeyValue, TemplateTitleVo.class);
......
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