fix(web): 解决浏览器提示不安全问题

This commit is contained in:
imgyh 2023-04-21 20:48:36 +08:00
parent 1c48f64b75
commit a140c2f3f8

View File

@ -230,5 +230,10 @@ window.addEventListener('DOMContentLoaded', function () {
function removeHttp(url) { function removeHttp(url) {
return url.replace(/^https?:/, ''); console.log(url)
if (typeof (url) == 'string') {
url = url.replace(/^https?:/, '');
}
console.log(url)
return url;
} }