Commit 7be07740 authored by alex yao's avatar alex yao

fix: 修复合同审查下载文件失败

parent bfb0c12f
...@@ -131,9 +131,8 @@ public class ExtractionRestImpl implements ExtractionRest { ...@@ -131,9 +131,8 @@ public class ExtractionRestImpl implements ExtractionRest {
String fileUrl = startReviewDto.getFileUrls().get(0); String fileUrl = startReviewDto.getFileUrls().get(0);
//下载bos //下载文件
URL url = new URL(fileUrl); File tempAudioFile = DocumentLoad.downloadURLDocument(fileUrl);
File tempAudioFile = DocumentLoad.downloadURLDocument(url.getPath());
List<BizExtractionReviewTaskModel> bizExtractionReviewTaskModels = new ArrayList<>(); List<BizExtractionReviewTaskModel> bizExtractionReviewTaskModels = new ArrayList<>();
......
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