|
|
@@ -139,7 +139,11 @@ public class MidjourneyServiceImpl implements MidjourneyService {
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
+ conversation.setBookmark(customId.contains("BOOKMARK"));
|
|
|
conversationMapper.updateById(conversation);
|
|
|
+ if (conversation.getBookmark()) {
|
|
|
+ return conversation;
|
|
|
+ }
|
|
|
Map<String, Object> param = MapUtil.builder(new HashMap<String,Object>())
|
|
|
.put("taskId", taskId).put("state", user.getId()).put("customId", customId).build();
|
|
|
SubmitResult result = submit(user.getMode(),"action", param);
|