From fdabefb739a84e3478128a24f041b1dd5d1022a2 Mon Sep 17 00:00:00 2001 From: Ana Alexandru-Gabriel Date: Mon, 16 Mar 2026 15:16:43 +0200 Subject: [PATCH] core: ash is no longer accesible at the previous endpoint This change should make the ash tray accesible again. --- src/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.js b/src/app.js index 2a419cf..b4df580 100644 --- a/src/app.js +++ b/src/app.js @@ -147,12 +147,12 @@ export default { fileData.append("file", file); - fetch("https://onlinedi.vision:7377/upload", { + fetch("https://onlinedi.vision/ash/upload", { method: 'POST', body: fileData }).then(response => { response.text().then(mess => { - const to_append = "https://onlinedi.vision:7377" + mess.split(/\r?\n/).pop(); + const to_append = "https://onlinedi.vision" + mess.split(/\r?\n/).pop(); message += to_append; if (this.serverID === '1') { message = ''; this.message; }