修复测试反馈问题

This commit is contained in:
2023-10-30 18:25:16 +08:00
parent f36c4706e4
commit 9aa8b22d99
40 changed files with 694 additions and 206 deletions

View File

@@ -92,7 +92,7 @@ public class MatchingActivity extends AbsOTOActivity {
bean = JSONObject.parseObject(data, SendConsumeBean.class);
if (bean != null) {
MatchingActivity.this.bundle=bundle;
new Handler(Looper.getMainLooper()).postDelayed(toCallRunnable, 5000);
new Handler(Looper.getMainLooper()).postDelayed(toCallRunnable, 1000);
return false;
}
}
@@ -164,7 +164,7 @@ public class MatchingActivity extends AbsOTOActivity {
bundle.putInt("type", ChatActivity.CALL_CHAT_TYPE_MATCH);
bundle.putString("data", JSONObject.toJSONString(bean));
MatchingActivity.this.bundle = bundle;
handler.postDelayed(toCallRunnable, 5000);
handler.postDelayed(toCallRunnable, 1000);
}
@Override