From c3ac7dd1ab0001dd1576c6d7bd51fb6ce87ba998 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Thu, 10 Jul 2025 20:21:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E8=BD=AC=E6=8D=A2=E4=B8=8D=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/assets/js/store/actions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/assets/js/store/actions.js b/resources/assets/js/store/actions.js index 09f687db1..a5a9a1c60 100644 --- a/resources/assets/js/store/actions.js +++ b/resources/assets/js/store/actions.js @@ -4682,6 +4682,7 @@ export default { } const serverLocation = new URL($A.mainUrl('')) data.url = data.url + .replace(/^\/+/, '') .replace(/^\:(\d+)/ig, (_, port) => { return serverLocation.protocol + '//' + serverLocation.hostname + ':' + port; })