Commit 322b9170 by zt

修改-linux服务器上不设置配置文件就加载默认的, 已解决

parent 077a74b3
......@@ -67,6 +67,11 @@ public class SoundMonitorService {
}
List<SoundInfo> list = soundsMaxIdDao.getInfo(updateTime);
if (list == null && list.size() < 1){
log.info("查询不到记录" );
return false;
}
for (SoundInfo soundInfo : list){
//成功且没有url的
if(StringUtils.isEmpty(soundInfo.getDownloadUrl() ) ){
......
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