|
@@ -119,7 +119,9 @@ public class ScrbServiceImpl implements IScrbService {
|
|
|
public List<TextVoiceTransfer> listTextVoiceTransfer(String num) {
|
|
|
List<TextVoiceTransfer> list = textVoiceTransferService.list(new LambdaQueryWrapper<TextVoiceTransfer>().eq(TextVoiceTransfer::getNum, num));
|
|
|
list.stream().forEach(v->{
|
|
|
- v.setVoicePath(fYunFileConfig.getHost() + v.getVoicePath());
|
|
|
+ if(StrUtil.isNotEmpty(v.getVoicePath())){
|
|
|
+ v.setVoicePath(fYunFileConfig.getHost() + v.getVoicePath());
|
|
|
+ }
|
|
|
});
|
|
|
return list;
|
|
|
}
|