From 229e1353f44c5b8f48fb6bf1de5219e0763365de Mon Sep 17 00:00:00 2001 From: xupei Date: Tue, 22 Jul 2025 17:36:16 +0800 Subject: [PATCH] =?UTF-8?q?BUGFIX:=20=E8=8E=B7=E5=8F=96=E4=B8=87=E7=9B=B8?= =?UTF-8?q?=E7=9A=84=E7=94=9F=E6=88=90=E7=BB=93=E6=9E=9C=E6=97=B6=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E8=BF=94=E5=9B=9Estatus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/ai/da/service/impl/GenerateServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/service/impl/GenerateServiceImpl.java b/src/main/java/com/ai/da/service/impl/GenerateServiceImpl.java index 6df88ea5..0c0cc944 100644 --- a/src/main/java/com/ai/da/service/impl/GenerateServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/GenerateServiceImpl.java @@ -2253,12 +2253,12 @@ public class GenerateServiceImpl extends ServiceImpl i PoseTransformationVO poseTransformationVO = new PoseTransformationVO(); switch (status) { case STATUS_SUCCESS: - poseTransformationVO.setStatus("Success"); List poseTransformations = poseTransformationMapper.selectList(new QueryWrapper().eq("unique_id", taskId).orderByDesc("id")); if (!poseTransformations.isEmpty()) { PoseTransformation poseTransformation = poseTransformations.get(0); poseTransformationVO = CopyUtil.copyObject(poseTransformation, PoseTransformationVO.class); // 生成视频的gif和第一帧图片 + poseTransformationVO.setStatus("Success"); processVideo(videoUrl, poseTransformation); poseTransformationVO.setId(poseTransformation.getId()); if (!StringUtil.isNullOrEmpty(poseTransformation.getGifUrl())) {