|
@@ -827,7 +827,7 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
List<String> notExistFileList = uploadFileList.stream().filter(filePath -> {
|
|
List<String> notExistFileList = uploadFileList.stream().filter(filePath -> {
|
|
filePath = filePath.substring(filePath.lastIndexOf(File.separator) + 1);
|
|
filePath = filePath.substring(filePath.lastIndexOf(File.separator) + 1);
|
|
log.info(filePath);
|
|
log.info(filePath);
|
|
- if(!panoramaImageList.contains(filePath)){
|
|
|
|
|
|
+ if(panoramaImageList.contains(filePath)){
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
return true;
|