From 95d6af44d78d636471f62c104e8790045a57cd6b Mon Sep 17 00:00:00 2001 From: G30 <50341825+silentoplayz@users.noreply.github.com> Date: Wed, 23 Sep 2026 23:32:14 -0400 Subject: [PATCH] fix: mark imported and cloned chats as read (#30754) --- backend/open_webui/models/chats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/open_webui/models/chats.py b/backend/open_webui/models/chats.py index 420c414978..d90f52e4c9 100644 --- a/backend/open_webui/models/chats.py +++ b/backend/open_webui/models/chats.py @@ -648,6 +648,7 @@ class ChatTable: 'current_message_id': form_data.current_message_id or self.get_current_message_id(form_data.chat), 'created_at': (form_data.created_at if form_data.created_at else int(time.time())), 'updated_at': (form_data.updated_at if form_data.updated_at else int(time.time())), + 'last_read_at': int(time.time()), } ) return chat