From 74e686f5c92cc846edff754590fa5355ec151fd5 Mon Sep 17 00:00:00 2001 From: DawnARC Date: Sat, 9 May 2026 01:14:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=BA=A0=E6=AD=A3=E8=AF=AD=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/A_memorix/core/utils/search_execution_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/A_memorix/core/utils/search_execution_service.py b/src/A_memorix/core/utils/search_execution_service.py index 651ff417..f05c4820 100644 --- a/src/A_memorix/core/utils/search_execution_service.py +++ b/src/A_memorix/core/utils/search_execution_service.py @@ -325,7 +325,7 @@ class SearchExecutionService: relation_hashes = [ item.hash_value for item in retrieved - if item.result_type == "relation" + if getattr(item, "result_type", "") == "relation" ] if relation_hashes: await plugin_instance.reinforce_access(relation_hashes)