REQ-3201: fix bugs

This commit is contained in:
yanglin 2024-12-18 16:22:12 +08:00
parent 6f64c5afee
commit 64ebeee13a

View File

@ -23,7 +23,7 @@ class CardSendExecutor {
void submit(Runnable sender) {
submitCount++;
if (submitCount <= 3) {
if (submitCount <= 4) {
sender.run();
return;
}