1
0
mirror of https://github.com/v2fly/domain-list-community.git synced 2025-08-22 18:38:36 +00:00

Make speedtest host lower-cased

This commit is contained in:
loyalsoldier 2020-01-20 01:50:33 +08:00
parent 6acb899338
commit dda2d1fd8d

View File

@ -4,7 +4,7 @@
# document.querySelectorAll('server').forEach(s => {
# let v = s.attributes.host.value;
# if (v) {
# v = v.split(":")[0];
# v = v.split(":")[0].toLowerCase();
# servers.push(v);
# }
# });