From c26e1929d6607b35d340b9597de600d9cb7df1d6 Mon Sep 17 00:00:00 2001 From: kurokobo Date: Sun, 1 Jun 2025 00:27:47 +0900 Subject: [PATCH] fix(housekeeping): exclude files that are used as app icons or avatar images from being removed (#20532) --- api/commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/commands.py b/api/commands.py index 66278a53a..6262bfde6 100644 --- a/api/commands.py +++ b/api/commands.py @@ -846,6 +846,9 @@ def clear_orphaned_file_records(force: bool): {"type": "text", "table": "workflow_node_executions", "column": "outputs"}, {"type": "text", "table": "conversations", "column": "introduction"}, {"type": "text", "table": "conversations", "column": "system_instruction"}, + {"type": "text", "table": "accounts", "column": "avatar"}, + {"type": "text", "table": "apps", "column": "icon"}, + {"type": "text", "table": "sites", "column": "icon"}, {"type": "json", "table": "messages", "column": "inputs"}, {"type": "json", "table": "messages", "column": "message"}, ]