From 3558a6c170c850c3214d8c42e943385bfd25a36f Mon Sep 17 00:00:00 2001 From: Lynn Date: Fri, 26 Dec 2025 15:26:56 +0800 Subject: [PATCH] Fix: allow update memory type (#12237) ### What problem does this PR solve? Allow update memory_type. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- api/apps/memories_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/apps/memories_app.py b/api/apps/memories_app.py index 746abad7d..b918337b4 100644 --- a/api/apps/memories_app.py +++ b/api/apps/memories_app.py @@ -70,7 +70,7 @@ async def create_memory(): @manager.route("/", methods=["PUT"]) # noqa: F821 @login_required -@not_allowed_parameters("id", "tenant_id", "memory_type", "storage_type") +@not_allowed_parameters("id", "tenant_id", "storage_type") async def update_memory(memory_id): req = await get_request_json() update_dict = {}