ignore disabled mirrors

This commit is contained in:
bigeagle 2016-06-15 15:00:36 +08:00
parent 8645eb3f94
commit c36b7b77fc

View File

@ -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]);
}