From a140c2f3f890cf709403f9e367f1e8eeafa7db99 Mon Sep 17 00:00:00 2001 From: imgyh <1974355683@qq.com> Date: Fri, 21 Apr 2023 20:48:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(web):=20=E8=A7=A3=E5=86=B3=E6=B5=8F?= =?UTF-8?q?=E8=A7=88=E5=99=A8=E6=8F=90=E7=A4=BA=E4=B8=8D=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/js/custom.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/js/custom.js b/static/js/custom.js index c5c08e2..e3e26f9 100644 --- a/static/js/custom.js +++ b/static/js/custom.js @@ -230,5 +230,10 @@ window.addEventListener('DOMContentLoaded', function () { function removeHttp(url) { - return url.replace(/^https?:/, ''); + console.log(url) + if (typeof (url) == 'string') { + url = url.replace(/^https?:/, ''); + } + console.log(url) + return url; } \ No newline at end of file