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

This commit is contained in:
imgyh 2023-04-21 20:50:24 +08:00
parent a140c2f3f8
commit 87b48aec06

View File

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