Commit 98809ecb by 田超

Merge branch 'fixbug/1025422' into 'master'

bug: [1025422] 删除本书阅读引导资源后,书刊权益设置页面接口500

See merge request rays/pcloud-book!932
parents 902c4edf 3fff5bcb
...@@ -646,7 +646,7 @@ public class AppletNewsBizImpl implements AppletNewsBiz { ...@@ -646,7 +646,7 @@ public class AppletNewsBizImpl implements AppletNewsBiz {
fillBusinessCard(appletNewsDTO); fillBusinessCard(appletNewsDTO);
// 填充城市信息 // 填充城市信息
if (StrUtil.isNotBlank(appletNews.getCityCode())) { if (null != appletNews && StrUtil.isNotBlank(appletNews.getCityCode())) {
appletNewsDTO.setCity(regionMapMapper.getCitysByCode(appletNews.getCityCode())); appletNewsDTO.setCity(regionMapMapper.getCitysByCode(appletNews.getCityCode()));
} }
return appletNewsDTO; return appletNewsDTO;
......
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