抽奖 maps为空

This commit is contained in:
2024-12-07 15:35:23 +08:00
parent 387af834ae
commit 9c40748e3f

View File

@@ -176,7 +176,7 @@ public class DiscSpinningController {
}
}
return new Result().put("data",
draws(amount, orderId, userId, maps.get("source") == null ? "order" : maps.get("source").toString()));
draws(amount, orderId, userId, maps == null || maps.get("source") == null ? "order" : maps.get("source").toString()));
}
@PostMapping("/app/discSpinning/receive")