4e1d0bb fix(chats): remove errant db= kwarg from upsert_message call
📊 Changes
1 file changed (+0 additions, -1 deletions)
View changed files
📝backend/open_webui/routers/chats.py (+0 -1)
📄 Description
The update_chat_message_by_id endpoint was passing db=db to upsert_message_to_chat_by_id_and_message_id, which doesn't accept that parameter — causing a TypeError on the POST /api/v1/chats/{id}/messages/{messageId} endpoint.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/22973
Author: @BillionClaw
Created: 3/24/2026
Status: ❌ Closed
Base:
main← Head:clawoss/fix/22959-db-arg📝 Commits (1)
4e1d0bbfix(chats): remove errant db= kwarg from upsert_message call📊 Changes
1 file changed (+0 additions, -1 deletions)
View changed files
📝
backend/open_webui/routers/chats.py(+0 -1)📄 Description
The
update_chat_message_by_idendpoint was passingdb=dbtoupsert_message_to_chat_by_id_and_message_id, which doesn't accept that parameter — causing a TypeError on thePOST /api/v1/chats/{id}/messages/{messageId}endpoint.Removed the spurious
db=dbargument. Fixes #22959.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.