From a4eb19ff575f0951ff4abfd6a6f8f54b99b439de Mon Sep 17 00:00:00 2001 From: xingc Date: Mon, 28 Apr 2025 15:43:28 +0800 Subject: [PATCH] =?UTF-8?q?fix(card):=20=E5=8D=A1=E7=89=87=E5=8E=9F?= =?UTF-8?q?=E5=88=9B=E5=88=A0=E9=99=A4=E9=94=99=E8=AF=AF=20`=5Fin`=20?= =?UTF-8?q?=E4=B8=BA=20`=5Fin`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/routers/card/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/routers/card/routes.py b/core/routers/card/routes.py index 0782e5e..aee8622 100644 --- a/core/routers/card/routes.py +++ b/core/routers/card/routes.py @@ -311,7 +311,7 @@ async def delete_card( db_crud = CRUD(db_session, Card) await db_crud.delete( filters={ - 'card_id_in': payload.card_ids, + 'card_id__in': payload.card_ids, 'user_id': login_user.user_id, 'source': 'OTHER' }