You've already forked FrameTour-BE
fix(face): 调整任务状态为正在生成时的锁定类型值
- 将任务状态为正在生成时的lockType从0修改为-9 - 确保正在生成状态能被正确识别和处理
This commit is contained in:
@@ -455,7 +455,7 @@ public class FaceServiceImpl implements FaceService {
|
|||||||
} else if (taskById.getStatus() == 3) {
|
} else if (taskById.getStatus() == 3) {
|
||||||
contentPageVO.setLockType(2);
|
contentPageVO.setLockType(2);
|
||||||
} else {
|
} else {
|
||||||
contentPageVO.setLockType(0);
|
contentPageVO.setLockType(-9); // 正在生成
|
||||||
}
|
}
|
||||||
contentPageVO.setContentType(0);
|
contentPageVO.setContentType(0);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user