Update index.html

This commit is contained in:
Osten 2022-03-23 22:10:51 +00:00 committed by GitHub
parent 0e3ca34875
commit 59e8873cd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,8 @@
status.innerHTML = "Reading..." + key; status.innerHTML = "Reading..." + key;
if (data.hasOwnProperty(key)) { if (data.hasOwnProperty(key)) {
var value = data[key]; var value = data[key];
if(value.url == "NONE") { continue; }
var _status = value.status var _status = value.status
//Create <li> node //Create <li> node
var node = document.createElement("li"); var node = document.createElement("li");
@ -72,4 +74,4 @@
</script> </script>
</body> </body>
</html> </html>