Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -190,10 +190,11 @@ public class ChatRobotServiceImpl implements ChatRobotService {
|
|||||||
} else {
|
} else {
|
||||||
chatRobot.setSuccessful(1);
|
chatRobot.setSuccessful(1);
|
||||||
chatRobotMapper.insert(chatRobot);
|
chatRobotMapper.insert(chatRobot);
|
||||||
for (int i = 0; i < array.size(); i++) {
|
int size = Math.min(array.size(), 4);
|
||||||
if (i >= 3) {
|
for (int i = 0; i < size; i++) {
|
||||||
continue;
|
// if (i >= 3) {
|
||||||
}
|
// continue;
|
||||||
|
// }
|
||||||
ChatRobotLibraryVO chatRobotLibraryVO = new ChatRobotLibraryVO();
|
ChatRobotLibraryVO chatRobotLibraryVO = new ChatRobotLibraryVO();
|
||||||
String bucketName = sysImage;
|
String bucketName = sysImage;
|
||||||
String prefix = getPrefix(array.getString(i),chatSendDTO.getGender());
|
String prefix = getPrefix(array.getString(i),chatSendDTO.getGender());
|
||||||
|
|||||||
Reference in New Issue
Block a user