filter myself from the list

This commit is contained in:
jjanzen 2025-02-10 17:45:04 -06:00
parent 439df5ecf0
commit 86e0e3cf93

View file

@ -4,13 +4,11 @@ function load_random_site() {
fetch(webring_all_url)
.then((response) => response.json())
.then((obj) => {
const entries = obj; // TODO: remove myself from the list
const entries_cleaned = obj.filter((item) => {
const entries = obj.filter((item) => {
return item.url !== "https://jjanzen.ca";
});
console.log(entries_cleaned);
const entry = entries[Math.floor(Math.random() * entries.length)];
// window.location.href = entry.url;
window.location.href = entry.url;
});
}