尝试重置

This commit is contained in:
Leo
2025-04-08 17:07:31 +08:00
parent bb41323253
commit 3c18e42e25

View File

@@ -205,11 +205,6 @@ public class JDUtil {
// 4. 发送图片(如果有)
List<String> images = contentResult.get("images");
if (images != null) {
try {
Thread.sleep(6000);
} catch (InterruptedException ignored) {
}
for (String imageUrl : images) {
if (imageUrl != null) {
wxUtil.sendImageMessage(chatRoom_BY, imageUrl);
@@ -898,11 +893,6 @@ public class JDUtil {
// 4. 发送图片(如果有)
List<String> images = contentResult.get("images");
if (images != null) {
try {
Thread.sleep(1000);
} catch (InterruptedException ignored) {
}
for (String imageUrl : images) {
if (imageUrl != null) {
wxUtil.sendImageMessage(wxid, imageUrl);
@@ -918,11 +908,6 @@ public class JDUtil {
// 6. 进入确认礼金步骤
state.setCurrentField("confirm");
try {
Thread.sleep(10000);
} catch (InterruptedException ignored) {
}
wxUtil.sendTextMessage(wxid,
"是否需要开通礼金?\n回复 1 - 是\n回复 2 - 否",
1, wxid, false);