From e7f37629e7be1736b59b491f196b14cc71d54c41 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Tue, 23 Dec 2025 16:09:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=91=E9=80=81=E6=88=AA=E5=9B=BE?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-web/src/components/chat/ChatBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/im-web/src/components/chat/ChatBox.vue b/im-web/src/components/chat/ChatBox.vue index c6e2322..75123cf 100644 --- a/im-web/src/components/chat/ChatBox.vue +++ b/im-web/src/components/chat/ChatBox.vue @@ -445,7 +445,7 @@ export default { this.onImageBefore(file); let formData = new FormData() formData.append('file', file) - this.$http.post("/image/upload", formData, { + this.$http.post("/image/upload?isPermanent=false", formData, { headers: { 'Content-Type': 'multipart/form-data' }