mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
ignore disabled mirrors
This commit is contained in:
parent
8645eb3f94
commit
c36b7b77fc
|
|
@ -44,6 +44,9 @@ window.refreshMirrorList = () => {
|
|||
|
||||
for(var k in mir_data) {
|
||||
var d = mir_data[k];
|
||||
if (d.status == "disabled") {
|
||||
continue;
|
||||
}
|
||||
if (options[d.name] != undefined ) {
|
||||
d = $.extend(d, options[d.name]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue