diff --git a/app/api/endpoints/coupon_activity.py b/app/api/endpoints/coupon_activity.py index 9a21b9a..17b2c7e 100644 --- a/app/api/endpoints/coupon_activity.py +++ b/app/api/endpoints/coupon_activity.py @@ -240,8 +240,6 @@ async def check_receive( ): """检查是否领取过优惠券""" can_receive, message, activity = await check_activity_can_receive(activity_id, db, current_user) - if not can_receive: - return error_response(code=400, message=message) return success_response(data={ "can_receive": can_receive,