diff --git a/static/js/index.es6 b/static/js/index.es6 index a47fcef..fc9829d 100644 --- a/static/js/index.es6 +++ b/static/js/index.es6 @@ -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]); }