fix: update upload path from tmp/uploads to usr/uploads

keyboardstaff committed Jan 31, 2026 at 01:56 UTC d42ea6b12b74300e465ea53997eaa3bcc8a23578
2 files changed +2 -2
python/helpers/message_queue.py
+1 -1
@@ -9,7 +9,7 @@ from python.helpers.print_style import PrintStyle
9
10 QUEUE_KEY = "message_queue"
11 QUEUE_SEQ_KEY = "message_queue_seq"
12 -UPLOAD_FOLDER = "/a0/tmp/uploads"
12 +UPLOAD_FOLDER = "/a0/usr/uploads"
13
14
15 def get_queue(context: "AgentContext") -> list:
webui/components/chat/message-queue/message-queue-store.js
+1 -1
@@ -105,7 +105,7 @@ const model = {
105 },
106
107 getAttachmentUrl(filename) {
108 - return `/image_get?path=/a0/tmp/uploads/${encodeURIComponent(filename)}`;
108 + return `/image_get?path=/a0/usr/uploads/${encodeURIComponent(filename)}`;
109 },
110 };
111