@@ -232,7 +232,7 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
log.info("从数据库中查到与 fileId:{} 匹配的路径为:{}", fileId, dataSource);
int n = dataSource.split("/").length;
if (n > 1) {
- fileId = pro.getDataSource().split("/")[n - 2];
+ fileId = dataSource.split("/")[n - 2];
}