From e3d6b1d789cbfa0c6eee927e6a9dce981f576119 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Fri, 30 Jan 2026 14:45:55 +0200 Subject: [PATCH] fix: remove deprecated public_share_enabled from thread list --- surfsense_backend/app/routes/new_chat_routes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/surfsense_backend/app/routes/new_chat_routes.py b/surfsense_backend/app/routes/new_chat_routes.py index a75b5594c..f2c26e449 100644 --- a/surfsense_backend/app/routes/new_chat_routes.py +++ b/surfsense_backend/app/routes/new_chat_routes.py @@ -217,7 +217,6 @@ async def list_threads( visibility=thread.visibility, created_by_id=thread.created_by_id, is_own_thread=is_own_thread, - public_share_enabled=thread.public_share_enabled, created_at=thread.created_at, updated_at=thread.updated_at, ) @@ -319,7 +318,6 @@ async def search_threads( thread.created_by_id == user.id or (thread.created_by_id is None and is_search_space_owner) ), - public_share_enabled=thread.public_share_enabled, created_at=thread.created_at, updated_at=thread.updated_at, )